import { Container } from "@mui/material";
import { ReactNode } from "react";
import ResponsiveAppBar from "../../features/layouts/navbar";

interface LayoutContainerProps {
  children: ReactNode;
}

// export const LayoutContainer = ({ children }: LayoutContainerProps) => {
//   return (
//     <>
//       <ResponsiveAppBar />
//       <Container
//         maxWidth={false}
//         style={{
//           paddingTop: 10,
//           backgroundColor: "#F5F5F5",
//           height: "100vh",
//         }}
//       >
//         {children}
//       </Container>
//     </>
//   );
// };
