5 lines
121 B
JavaScript
5 lines
121 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import ReportPage from './view';
|
||
|
|
||
|
export default connect(null, null)(ReportPage);
|