Skip to content

Commit 2eb5b4b

Browse files
mrseanbainesmarkerikson
authored andcommitted
Remove unused parameter in example store config (#154)
1 parent 97c09dc commit 2eb5b4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/usage/usage-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Every Redux app needs to configure and create a Redux store. This usually involv
3131
The following example from the [Configuring Your Store](https://redux.js.org/recipes/configuring-your-store) page in the Redux docs shows a typical store setup process:
3232

3333
```js
34-
import { applyMiddleware, compose, createStore } from 'redux'
34+
import { applyMiddleware, createStore } from 'redux'
3535
import { composeWithDevTools } from 'redux-devtools-extension'
3636
import thunkMiddleware from 'redux-thunk'
3737

0 commit comments

Comments
 (0)