14 lines
269 B
JavaScript
14 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);
|