Skip to content

Instantly share code, notes, and snippets.

@Sawtaytoes
Created March 20, 2019 08:43
Show Gist options
  • Save Sawtaytoes/9c2da4b373b477ede20909450f840170 to your computer and use it in GitHub Desktop.
Save Sawtaytoes/9c2da4b373b477ede20909450f840170 to your computer and use it in GitHub Desktop.
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