mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
13 lines
373 B
JavaScript
13 lines
373 B
JavaScript
import { connect } from 'react-redux'
|
|
import { getSendWarnings } from '../../../send.selectors'
|
|
import SendRowWarningMessage from './send-row-warning-message.component'
|
|
|
|
export default connect(mapStateToProps)(SendRowWarningMessage)
|
|
|
|
function mapStateToProps (state, ownProps) {
|
|
return {
|
|
warnings: getSendWarnings(state),
|
|
warningType: ownProps.warningType,
|
|
}
|
|
}
|