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