class Node extends Component { constructor(props) { super(props) const { initialColor, initialValue, } = props this .state = { color: initialColor, value: initialValue, } } }