Files
react-test/docs/data/joy/components/textarea/TextareaField.tsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
440 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import FormControl from '@mui/joy/FormControl';
import FormLabel from '@mui/joy/FormLabel';
import FormHelperText from '@mui/joy/FormHelperText';
import Textarea from '@mui/joy/Textarea';
export default function TextareaField() {
return (
<FormControl>
<FormLabel>Label</FormLabel>
<Textarea placeholder="Placeholder" minRows={2} />
<FormHelperText>This is a helper text.</FormHelperText>
</FormControl>
);
}