Skip to content

Instantly share code, notes, and snippets.

@Odonno
Created June 1, 2020 09:34
Show Gist options
  • Save Odonno/dce5ea432d18b77606cc0405c4363f74 to your computer and use it in GitHub Desktop.
Save Odonno/dce5ea432d18b77606cc0405c4363f74 to your computer and use it in GitHub Desktop.
State management comparison - recoil - atoms
export const todoListState = atom<Todo[]>({
key: 'todolist',
default: [],
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment