lbry-desktop/ui/page/signInVerify/index.js

11 lines
253 B
JavaScript
Raw Normal View History

2019-11-14 01:33:36 +01:00
import { connect } from 'react-redux';
import { doToast } from 'redux/actions/notifications';
2019-11-14 01:33:36 +01:00
import SignInVerifyPage from './view';
const select = () => ({});
const perform = {
doToast,
};
export default connect(select, perform)(SignInVerifyPage);