You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
363 B
12 lines
363 B
import { connect } from 'react-redux';
|
|
import { getSendErrors } from '../../../../../ducks/send';
|
|
import SendRowErrorMessage from './send-row-error-message.component';
|
|
|
|
export default connect(mapStateToProps)(SendRowErrorMessage);
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
return {
|
|
errors: getSendErrors(state),
|
|
errorType: ownProps.errorType,
|
|
};
|
|
}
|
|
|