10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
|
|
import Box from '@mui/material/Box';
|
||
|
|
|
||
|
|
export default function BreakpointsAsArray() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<Box sx={{ width: [100, 200, 300] }}>This box has a responsive width.</Box>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|