mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
9 lines
293 B
JavaScript
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>;
|
|
}
|