"use client"; import { FC, PropsWithChildren, useState } from "react"; import { Grid } from "@mui/material"; import { CssBaseline } from "@mui/material"; import { css, Global } from "@emotion/react"; import { fonts } from "@/app/_styles/theme"; import { Sidebar } from "./Sidebar"; export const InternalLayout: FC = ({ children }) => { const [open, setOpen] = useState(true); const { roboto } = fonts; const globalCSS = css` * { font-family: ${roboto.style.fontFamily}; } `; return ( <> {children as any} ); };