Skip to content

Commit bbdac06

Browse files
authored
Merge pull request #1249 from antego/patch-1
Fix the example code in "Quick start" tutorial
2 parents bb594a0 + 1d3be32 commit bbdac06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tutorials/quick-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Redux requires that [we write all state updates immutably, by making copies of d
112112
```ts title="features/counter/counterSlice.js"
113113
import { createSlice, PayloadAction } from '@reduxjs/toolkit'
114114

115-
interface CounterState {
115+
export interface CounterState {
116116
value: number
117117
}
118118

0 commit comments

Comments
 (0)