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