12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { selectUserEmail } from 'redux/selectors/user';
|
||
|
import CardVerify from './view';
|
||
|
|
||
|
const select = state => ({
|
||
|
email: selectUserEmail(state),
|
||
|
});
|
||
|
|
||
|
const perform = () => ({});
|
||
|
|
||
|
export default connect(select, perform)(CardVerify);
|