|
- "use client";
-
- import Box from "@mui/material/Box";
- import PoWorkbenchShell from "@/components/PoWorkbench/PoWorkbenchShell";
-
- export default function PoWorkbenchPageClient() {
- return (
- <Box
- sx={{
- flex: 1,
- alignSelf: "stretch",
- height: "100%",
- minHeight: 0,
- overflow: "hidden",
- }}
- >
- <PoWorkbenchShell />
- </Box>
- );
- }
|