lbry-desktop/ui/page/signIn/index.js

11 lines
188 B
JavaScript
Raw Normal View History

2019-08-27 16:43:42 +02:00
import { connect } from 'react-redux';
import SignUpPage from './view';
2019-09-26 18:07:11 +02:00
const select = () => ({});
const perform = () => ({});
2019-08-27 16:43:42 +02:00
export default connect(
select,
2019-09-26 18:07:11 +02:00
perform
2019-08-27 16:43:42 +02:00
)(SignUpPage);