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.
22 lines
534 B
22 lines
534 B
6 years ago
|
import { connect } from 'react-redux'
|
||
|
import UiMigrationAnnouncement from './ui-migration-annoucement.component'
|
||
|
import { setCompletedUiMigration } from '../../actions'
|
||
|
|
||
|
const mapStateToProps = (state) => {
|
||
|
const shouldShowAnnouncement = !state.metamask.completedUiMigration
|
||
|
|
||
|
return {
|
||
|
shouldShowAnnouncement,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const mapDispatchToProps = dispatch => {
|
||
|
return {
|
||
|
onClose () {
|
||
|
dispatch(setCompletedUiMigration())
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default connect(mapStateToProps, mapDispatchToProps)(UiMigrationAnnouncement)
|