- Cleanup
This commit is contained in:
11
app/components/Login/LocalLogin.container.js
Normal file
11
app/components/Login/LocalLogin.container.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { login } from '../../actions/profile.js';
|
||||
|
||||
import LocalLogin from './LocalLogin.js';
|
||||
|
||||
const mapDispatchToProps = (dispatch) => ({
|
||||
doLoginAction: (username, password) => dispatch(login(username, password)),
|
||||
});
|
||||
|
||||
export default connect(null, mapDispatchToProps)(LocalLogin);
|
||||
Reference in New Issue
Block a user