7 lines
152 B
JavaScript
7 lines
152 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import SendPage from './view';
|
||
|
|
||
|
const select = (state) => ({});
|
||
|
|
||
|
export default connect(select, null)(SendPage);
|