mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
16 lines
324 B
JavaScript
16 lines
324 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);
|