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