Files
react-test/test/regressions/fixtures/TextField/MultilineTextField.js

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

12 lines
293 B
JavaScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
import * as React from 'react';
import TextField from '@mui/material/TextField';
export default function MultilineTextField() {
return (
<div>
<TextField label="multiline small" multiline size="small" />
<TextField label="singleline small" size="small" />
</div>
);
}