Created
May 25, 2021 03:24
-
-
Save iskenxan/401465a4451ecd378f0a50744462aa77 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import produce from "immer" | |
const baseState = [ | |
{ | |
todo: "Learn typescript", | |
done: true | |
}, | |
{ | |
todo: "Try immer", | |
done: false | |
} | |
] | |
const nextState = produce(baseState, draftState => { | |
draftState.push({todo: "Tweet about it"}) | |
draftState[1].done = true | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment