import { Box } from "@mui/material"; import { useScreenDimension } from "../../hooks/useDimensions"; interface Props { children: React.ReactNode; } export const ModalContents = ({ children }: Props) => { const { isMobile } = useScreenDimension(); return ( {children} ); };