9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import { TextInput, TextInputProps } from '@mantine/core';
|
|
|
|
type Props = TextInputProps;
|
|
|
|
const StringField = (props: Props) => {
|
|
return <TextInput {...props} />;
|
|
};
|
|
|
|
export default StringField |