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

10 lines
246 B
JavaScript
Raw Normal View History

2019-09-26 12:07:11 -04:00
import { connect } from 'react-redux';
import { selectUserVerifiedEmail } from 'lbryinc';
2018-03-26 14:32:43 -07:00
import Page from './view';
2019-06-17 16:32:38 -04:00
2019-09-26 12:07:11 -04:00
const select = state => ({
authenticated: Boolean(selectUserVerifiedEmail(state)),
});
export default connect(select)(Page);