mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +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,
|
||
|
}
|
||
|
}
|