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

10 lines
162 B
JavaScript
Raw Normal View History

2019-06-17 16:32:38 -04:00
import { connect } from 'react-redux';
import AccountPage from './view';
2017-04-22 20:17:01 +07:00
const select = state => ({});
2019-06-17 16:32:38 -04:00
export default connect(
select,
null
)(AccountPage);