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

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

13 lines
276 B
Plaintext
Raw Normal View History

2025-12-12 14:26:25 +09:00
<form
onSubmit={(event) => {
event.preventDefault();
}}
>
<Textarea
placeholder="Try to submit with no text!"
required
sx={{ mb: 1 }}
/>
<Textarea placeholder="It is disabled" disabled sx={{ mb: 1 }} />
<Button type="submit">Submit</Button>
</form>