Guest User

Untitled

a guest
Jan 23rd, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import React, {Component} from "react"
  2. import * as actionsLogin from "../../login/actions/actionsLogin"
  3. import HomeControllerView from "./HomeControllerView"
  4.  
  5. class HomeController extends Component {
  6. constructor() {
  7. super()
  8. this.state = {}
  9. }
  10.  
  11. render() {
  12. return <HomeControllerView {...this.props} />
  13. }
  14. }
  15.  
  16. export default connect(({reducerLogin}) => {...reducerLogin}, {...actionsLogin})(LoginController)
Add Comment
Please, Sign In to add comment