aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/identicon/identicon.container.js
blob: bc49bc18ebe26388e792f7309a80d03d2102e030 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { connect } from 'react-redux'
import Identicon from './identicon.component'

const mapStateToProps = state => {
  const { metamask: { useBlockie } } = state

  return {
    useBlockie,
  }
}

export default connect(mapStateToProps)(Identicon)