Created
May 19, 2020 15:36
-
-
Save ozcanzaferayan/22e09225725efdd236a0a459f5a13da7 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
const todoListState = atom({ | |
key: "todoListState", | |
default: [ | |
{ name: "Apples", isCompleted: false }, | |
{ name: "Eggs", isCompleted: false }, | |
{ name: "Butter", isCompleted: false }, | |
], | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment