File size: 413 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// @flow
import * as React from "react";
import Form from "../components/Form";
import type { Props as FormCheckboxProps } from "../components/Form/FormCheckbox.react";
function FormCheckboxInput(props: FormCheckboxProps) {
const formCheckboxComponent = React.createElement(Form.Checkbox, props);
return <Form.Group>{formCheckboxComponent}</Form.Group>;
}
export default FormCheckboxInput;
|