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