import { Box, Container } from "@mui/material"; import { ReactNode } from "react"; export default function PostLayout({children}: Readonly<{ children: ReactNode; }>) { return ( {children} ) }