Files
react-test/docs/data/material/components/text-fields/FullWidthTextField.js

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

11 lines
274 B
JavaScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Box from '@mui/material/Box';
import TextField from '@mui/material/TextField';
export default function FullWidthTextField() {
return (
<Box sx={{ width: 500, maxWidth: '100%' }}>
<TextField fullWidth label="fullWidth" id="fullWidth" />
</Box>
);
}