mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 00:28:06 +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)
|