import { ReactNode } from "react"; interface LayoutMasterContentProps { children?: ReactNode; } const LayoutMasterContent = (props: LayoutMasterContentProps) => { const { children } = props; return
{children}
; }; export default LayoutMasterContent;