import React from "react"; import Input from "./Input"; import Button from "./Button"; export default class Form extends React.Component { constructor(props) { super(props); this.state = { name: "", color: this.props.color }, this.onChange = this.onChange.bind(this); } onChange(event) { this.setState({ name: event.target.value }); } render() { let bgColor = { 'backgroundColor': this.props.color }; return (
); } }