FPSMS-frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 regels
390 B

  1. "use client";
  2. import Box from "@mui/material/Box";
  3. import PoWorkbenchShell from "@/components/PoWorkbench/PoWorkbenchShell";
  4. export default function PoWorkbenchPageClient() {
  5. return (
  6. <Box
  7. sx={{
  8. flex: 1,
  9. alignSelf: "stretch",
  10. height: "100%",
  11. minHeight: 0,
  12. overflow: "hidden",
  13. }}
  14. >
  15. <PoWorkbenchShell />
  16. </Box>
  17. );
  18. }