This component is represents button for <Form />. It requires context which is provided by <FormGroup />.
<Form {...FormProps}>
<FormGroup {...FormGroupProps}>
<Button
action="button clicked"
activeClassName="is-active"
{...HTMLButtonElementProps}
/>
</FormGroup>
</Form>where:
action- value, that passed to model. Requried.activeClassName- className that attaching whenactionprop value is the same as value in model. Optional. Default -is-active.