lbry-desktop/ui/page/signIn/index.js
2019-11-11 13:27:29 -05:00

11 lines
188 B
JavaScript

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