123
This commit is contained in:
9
components/ObjectForm/Fields/NumberField/NumberField.tsx
Normal file
9
components/ObjectForm/Fields/NumberField/NumberField.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import { NumberInput, NumberInputProps } from '@mantine/core';
|
||||
|
||||
type Props = NumberInputProps;
|
||||
|
||||
const NumberField = (props: Props) => {
|
||||
return <NumberInput hideControls {...props} />;
|
||||
};
|
||||
|
||||
export default NumberField;
|
||||
Reference in New Issue
Block a user