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

10 lines
162 B
JavaScript

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