Last active
May 1, 2019 21:51
-
-
Save gpDA/1afb55e7aa182cf62181c7cf296766b9 to your computer and use it in GitHub Desktop.
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
// ./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