Files
2025-10-18 01:46:46 +03:00

9 lines
195 B
TypeScript

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