2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2018-09-24 05:44:42 +02:00
|
|
|
import { selectUserEmail } from 'lbryinc';
|
2017-12-21 22:08:54 +01:00
|
|
|
import CardVerify from './view';
|
2017-07-19 01:00:13 +02:00
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
email: selectUserEmail(state),
|
|
|
|
});
|
|
|
|
|
2018-09-24 05:44:42 +02:00
|
|
|
const perform = () => ({});
|
2017-07-19 01:00:13 +02:00
|
|
|
|
2018-09-24 05:44:42 +02:00
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(CardVerify);
|