Merge branch 'master' of github.com:Microsoft/frontend-bootcamp

This commit is contained in:
Ken
2019-02-28 09:23:30 -08:00
66 changed files with 549 additions and 380 deletions

View File

@@ -58,7 +58,7 @@ We begin the journey into Redux by looking at the store. The store consists of s
## Create Store
The `createStore()` takes in several arguments. The simplest for just takes in reducers. Reducers are the means by which the state changes from one snapshot to another.
The `createStore()` takes in several arguments. The simplest form just takes in reducers. Reducers are the means by which the state changes from one snapshot to another.
```ts
const store = createStore(reducer);