11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|