123
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
import { Checkbox, CheckboxProps } from '@mantine/core';
|
||||
|
||||
type Props = CheckboxProps;
|
||||
|
||||
const BooleanField = (props: Props) => {
|
||||
return <Checkbox {...props} />;
|
||||
};
|
||||
export default BooleanField;
|
||||
Reference in New Issue
Block a user