FPSMS-frontend
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

22 rader
659 B

  1. "use client";
  2. import Box from "@mui/material/Box";
  3. import Typography from "@mui/material/Typography";
  4. /**
  5. * Dev / R&D sandbox for Job Order. Not listed in NavigationContent — open via /jo/testing only.
  6. * Later: call APIs with clientAuthFetch + NEXT_PUBLIC_API_URL like src/app/(main)/testing/page.tsx.
  7. */
  8. export default function JoTestingPage() {
  9. return (
  10. <Box sx={{ p: 4 }}>
  11. <Typography variant="h5" gutterBottom fontWeight="bold">
  12. Job order testing
  13. </Typography>
  14. <Typography color="text.secondary">
  15. Empty page. This route is intentionally omitted from the navigation bar.
  16. </Typography>
  17. </Box>
  18. );
  19. }