Created
March 20, 2019 08:43
-
-
Save Sawtaytoes/9c2da4b373b477ede20909450f840170 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
class Node extends Component { | |
constructor(props) { | |
super(props) | |
const { | |
initialColor, | |
initialValue, | |
} = props | |
this | |
.state = { | |
color: initialColor, | |
value: initialValue, | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment