Files
redash/client/app/components/dynamic-form/fields/CheckboxField.jsx
2020-08-25 14:24:15 -03:00

9 lines
293 B
JavaScript

import React from "react";
import Checkbox from "antd/lib/checkbox";
import getFieldLabel from "../getFieldLabel";
export default function CheckboxField({ form, field, ...otherProps }) {
const fieldLabel = getFieldLabel(field);
return <Checkbox {...otherProps}>{fieldLabel}</Checkbox>;
}