mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-15 21:54:54 +00:00
8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
// @flow
|
|
import { connect } from 'react-redux';
|
|
import ENS from './components/ENS';
|
|
|
|
const mapStateToProps = state => ({});
|
|
|
|
export default connect(mapStateToProps)(ENS);
|