Skip to content

Commit

Permalink
Merge pull request #1249 from antego/patch-1
Browse files Browse the repository at this point in the history
Fix the example code in "Quick start" tutorial
  • Loading branch information
markerikson committed Jul 4, 2021
2 parents bb594a0 + 1d3be32 commit bbdac06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Redux requires that [we write all state updates immutably, by making copies of d
```ts title="features/counter/counterSlice.js"
import { createSlice, PayloadAction } from '@reduxjs/toolkit'

interface CounterState {
export interface CounterState {
value: number
}

Expand Down

0 comments on commit bbdac06

Please sign in to comment.