import { PropsWithChildren } from "react"; export const LayoutContent = ({ children }: PropsWithChildren) => { return (
{children}
); }; LayoutContent.displayName = "LayoutContent";