11 lines
269 B
JavaScript
11 lines
269 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { doToast } from 'redux/actions/notifications';
|
||
|
import SignInWalletPasswordPage from './view';
|
||
|
|
||
|
const select = () => ({});
|
||
|
const perform = {
|
||
|
doToast,
|
||
|
};
|
||
|
|
||
|
export default connect(select, perform)(SignInWalletPasswordPage);
|