-
-
Save rbiggs/c8d29bf811a1cd13074ffe5ed24630dd to your computer and use it in GitHub Desktop.
Basic program state for a list component
This file contains hidden or 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 state = { | |
| newKey: 104, | |
| inputValue: '', | |
| fruits: [ | |
| { | |
| key: 101, | |
| value: 'Apples' | |
| }, | |
| { | |
| key: 102, | |
| value: 'Oranges' | |
| }, | |
| { | |
| key: 103, | |
| value: 'Bananas' | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment