lbry-desktop/ui/page/signInVerify/index.js
2020-06-16 09:56:32 -04:00

11 lines
253 B
JavaScript

import { connect } from 'react-redux';
import { doToast } from 'redux/actions/notifications';
import SignInVerifyPage from './view';
const select = () => ({});
const perform = {
doToast,
};
export default connect(select, perform)(SignInVerifyPage);