[중단점] Breakpoints
https://mui.com/material-ui/customization/breakpoints/ Breakpoints - Material UI API that enables the use of breakpoints in a wide variety of contexts. mui.com 1. 테마 설정 createTheme({ breakpoints: { values: { xs: 0, sm: 600, md: 900, lg: 1200, xl: 1536, }, }, }); 2. 임의 명칭 사용 createTheme({ breakpoints: { values: { mobile: 0, tablet: 640, laptop: 1024, desktop: 1200, }, }, }); ... ... declare modul..