import { Flex } from "@chakra-ui/react"; import React from "react"; import { useIsMobile } from "../components/contexts/MobileContext"; function Content({ children }) { const isMobile = useIsMobile(); return ( {children} ); } export default Content;