"use client"; import { ReactNode } from "react"; import { Grid } from "@mui/material"; type LayoutProps = { detail: any; edit: any; params: { id: string; }; }; export default function Layout({ detail, edit, params: { id } }: LayoutProps) { return ( {detail} {edit} ); }