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.
27 lines
657 B
27 lines
657 B
6 years ago
|
import { connect } from 'react-redux'
|
||
|
import { withRouter } from 'react-router-dom'
|
||
|
import { compose } from 'recompose'
|
||
6 years ago
|
import { closeWelcomeScreen } from '../../../store/actions'
|
||
6 years ago
|
import Welcome from './welcome.component'
|
||
|
|
||
|
const mapStateToProps = ({ metamask }) => {
|
||
6 years ago
|
const { welcomeScreenSeen, isInitialized, participateInMetaMetrics } = metamask
|
||
6 years ago
|
|
||
|
return {
|
||
|
welcomeScreenSeen,
|
||
|
isInitialized,
|
||
6 years ago
|
participateInMetaMetrics,
|
||
6 years ago
|
}
|
||
|
}
|
||
|
|
||
|
const mapDispatchToProps = dispatch => {
|
||
|
return {
|
||
|
closeWelcomeScreen: () => dispatch(closeWelcomeScreen()),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default compose(
|
||
|
withRouter,
|
||
|
connect(mapStateToProps, mapDispatchToProps)
|
||
|
)(Welcome)
|