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

15 lines
269 B
JavaScript

import { connect } from 'react-redux';
import { selectUserEmail } from 'lbryinc';
import CardVerify from './view';
const select = state => ({
email: selectUserEmail(state),
});
const perform = () => ({});
export default connect(
select,
perform
)(CardVerify);