learn-co-curriculum / putting-it-all-together-lab

Build out a full blackjack game with React and Flux!
Other
0 stars 3 forks source link

lab wants us to import our store in app.js instead of index.js #6

Open Enoch2k2 opened 7 years ago

Enoch2k2 commented 7 years ago

@aturkewi @Lukeghenco

Generally we would import our store in index.js

First thing's first, bring in a store.js from a past readme or lab (bonus points if you can write out the entire store without help). Import the createStore function to our App.js file and create a store with the provided blackjack_reducer. We will come back to building out the rest of our reducer.

Should be changed to

First thing's first, bring in a store.js from a past readme or lab (bonus points if you can write out the entire store without help). Import the createStore function to our index.js file and create a store with the provided blackjack_reducer. We will come back to building out the rest of our reducer.

Lukeghenco commented 7 years ago

@Enoch2k2 could you make an edit to the readme and submit a PR?