Skip to content

Instantly share code, notes, and snippets.

@blizzerand
Created November 28, 2018 10:13
Show Gist options
  • Save blizzerand/61c07b32cee3bb019fe1bb36d07ad2c6 to your computer and use it in GitHub Desktop.
Save blizzerand/61c07b32cee3bb019fe1bb36d07ad2c6 to your computer and use it in GitHub Desktop.
Form Component
<form className="container" onSubmit={this.handleFormSubmit}>
<Input /> {/* Name of the user */}
<Input /> {/* Input for Age */}
<Select /> {/* Gender Selection */}
<CheckBox /> {/* List of Skills (eg. Programmer, developer) */}
<TextArea /> {/* About you */}
<Button /> { /*Submit */ }
<Button /> {/* Clear the form */}
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment