lbry-desktop/ui/component/cardVerify/index.js

15 lines
269 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2018-09-23 23:44:42 -04:00
import { selectUserEmail } from 'lbryinc';
import CardVerify from './view';
2017-07-18 19:00:13 -04:00
const select = state => ({
email: selectUserEmail(state),
});
2018-09-23 23:44:42 -04:00
const perform = () => ({});
2017-07-18 19:00:13 -04:00
2018-09-23 23:44:42 -04:00
export default connect(
select,
perform
)(CardVerify);