10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
import { connect } from 'react-redux';
|
|
import SignUpPage from './view';
|
|
|
|
const select = () => ({});
|
|
const perform = () => ({});
|
|
|
|
export default connect(
|
|
select,
|
|
perform
|
|
)(SignUpPage);
|