Skip to content

Instantly share code, notes, and snippets.

@gpDA
Last active May 1, 2019 21:51
Show Gist options
  • Save gpDA/1afb55e7aa182cf62181c7cf296766b9 to your computer and use it in GitHub Desktop.
Save gpDA/1afb55e7aa182cf62181c7cf296766b9 to your computer and use it in GitHub Desktop.
// ./components.App.js
class App extends Component{
// initial state
// id:1 -> line1 / id:2 -> line2 / id:3 -> line3
state = {
// counters array comprised of Object key / value pair
counters: [
{ id: 1, value: 1},
{ id: 2, value: 2},
{ id: 3, value: 3}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment