Skip to content

Instantly share code, notes, and snippets.

@iskenxan
Created May 25, 2021 03:24
Show Gist options
  • Save iskenxan/401465a4451ecd378f0a50744462aa77 to your computer and use it in GitHub Desktop.
Save iskenxan/401465a4451ecd378f0a50744462aa77 to your computer and use it in GitHub Desktop.
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