This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
|
import { createBreakpoint } from "react-use";
|
|
|
|
export default createBreakpoint({
|
|
sm: "640px",
|
|
tablet: "640px",
|
|
md: "768px",
|
|
lg: "1024px",
|
|
desktop: "1024px",
|
|
xl: "1280px",
|
|
hires: "1408px",
|
|
"2xl": "1536px",
|
|
});
|