25 lines
519 B
TypeScript
25 lines
519 B
TypeScript
"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 (
|
|
<Grid container spacing={0} sx={{ height: "100vh" }} direction="row">
|
|
<Grid item sx={{ height: "100vh" }} xs={9}>
|
|
{detail}
|
|
</Grid>
|
|
<Grid item xs={3} sx={{ height: "100vh" }}>
|
|
{edit}
|
|
</Grid>
|
|
</Grid>
|
|
);
|
|
}
|