react-code-dataset / tabler-react /src /forms /FormCheckboxInput.react.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
413 Bytes
// @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;