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

11 lines
269 B
JavaScript
Raw Normal View History

2020-09-18 17:16:49 +02:00
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);