12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import i18n from './view';
|
||
|
|
||
|
const select = state => ({});
|
||
|
|
||
|
const perform = () => ({});
|
||
|
|
||
|
export default connect(
|
||
|
select,
|
||
|
perform
|
||
|
)(i18n);
|