We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b041c14 commit 694c877Copy full SHA for 694c877
docs/api/createSlice.mdx
@@ -233,9 +233,9 @@ Result's function `getInitialState` provides access to the initial state value g
233
## Examples
234
235
```ts
236
-import { createSlice, createAction } from '@reduxjs/toolkit'
+import { createSlice, createAction, configureStore } from '@reduxjs/toolkit'
237
import type { PayloadAction } from '@reduxjs/toolkit'
238
-import { configureStore, combineReducers } from 'redux'
+import { combineReducers } from 'redux'
239
240
const incrementBy = createAction<number>('incrementBy')
241
const decrementBy = createAction<number>('decrementBy')
0 commit comments