mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
import { connect } from 'react-redux'
|
|
import Identicon from './identicon.component'
|
|
|
|
const mapStateToProps = state => {
|
|
const { metamask: { useBlockie } } = state
|
|
|
|
return {
|
|
useBlockie,
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps)(Identicon)
|