💡예제

import { ComponentSingleStyleConfig } from '@chakra-ui/react';

const breakpoints = {
  base: '0px',
  sm: '390px',
  md: '600px',
  lg: '1200px',
  xl: '1920px',
  '2xl': '1920px',
};

export default breakpoints;

Last updated