mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
14 lines
311 B
JavaScript
14 lines
311 B
JavaScript
import { connect } from 'react-redux'
|
|
import Authenticated from './authenticated.component'
|
|
|
|
const mapStateToProps = (state) => {
|
|
const { metamask: { isUnlocked, completedOnboarding } } = state
|
|
|
|
return {
|
|
isUnlocked,
|
|
completedOnboarding,
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps)(Authenticated)
|