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