mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
13 lines
308 B
JavaScript
13 lines
308 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)
|