Skip to content

Instantly share code, notes, and snippets.

@ting11222001
Last active October 5, 2020 07:28
Show Gist options
  • Save ting11222001/eb5a0cb0087769c50cc499daa3207e93 to your computer and use it in GitHub Desktop.
Save ting11222001/eb5a0cb0087769c50cc499daa3207e93 to your computer and use it in GitHub Desktop.
render(){
return(
<div>
...
<form onSubmit={this.onSubmit}>
...
<div className="form-group">
<label>Description: </label>
<input type="text"
required
className="form-control"
value={this.state.description}
onChange={this.onChangeDescription}
/>
</div>
...
</form>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment