s/for/form

This commit is contained in:
Carlos Adrian Gomez
2019-02-27 20:55:20 -08:00
committed by GitHub
parent dac6f4b5d8
commit 2ada03dc47

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);