As you use ES6 in your tutorial, I think the line 57 of `App` component: ``` var App = connect(mapStateToProps, mapDispatchToProps)(Main); ``` should be: ``` const App = connect(mapStateToProps, mapDispatchToProps)(Main); ``` just as it is in the video tutorial.