Skip to content

Instantly share code, notes, and snippets.

@rbiggs
Created February 3, 2019 17:38
Show Gist options
  • Select an option

  • Save rbiggs/c8d29bf811a1cd13074ffe5ed24630dd to your computer and use it in GitHub Desktop.

Select an option

Save rbiggs/c8d29bf811a1cd13074ffe5ed24630dd to your computer and use it in GitHub Desktop.
Basic program state for a list component
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