lbry-desktop/src/ui/page/account/index.js
2019-06-17 16:32:38 -04:00

10 lines
162 B
JavaScript

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