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.
|
- "use client";
-
- import Box from "@mui/material/Box";
- import Typography from "@mui/material/Typography";
-
- /**
- * Dev / R&D sandbox for Job Order. Not listed in NavigationContent — open via /jo/testing only.
- * Later: call APIs with clientAuthFetch + NEXT_PUBLIC_API_URL like src/app/(main)/testing/page.tsx.
- */
- export default function JoTestingPage() {
- return (
- <Box sx={{ p: 4 }}>
- <Typography variant="h5" gutterBottom fontWeight="bold">
- Job order testing
- </Typography>
- <Typography color="text.secondary">
- Empty page. This route is intentionally omitted from the navigation bar.
- </Typography>
- </Box>
- );
- }
|