"use client"; import { FC, PropsWithChildren, useState } from "react"; import { Grid, Box } from "@mui/material"; import { Sidebar } from "./Sidebar"; import { SetupModeWarning } from "./SetupModeWarning"; interface InternalLayoutProps extends PropsWithChildren { setupModeActive: boolean; } export const InternalLayout: FC = ({ children, setupModeActive, }) => { const [open, setOpen] = useState(true); return ( {children as any} ); };