9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
import { Checkbox, CheckboxProps } from '@mantine/core';
|
|
|
|
type Props = CheckboxProps;
|
|
|
|
const BooleanField = (props: Props) => {
|
|
return <Checkbox {...props} />;
|
|
};
|
|
export default BooleanField;
|