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

10 lines
162 B
JavaScript
Raw Normal View History

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