-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.tsx
More file actions
52 lines (49 loc) · 1.77 KB
/
index.tsx
File metadata and controls
52 lines (49 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { Box, Typography } from "@mui/material";
import { createFileRoute } from "@tanstack/react-router";
import { Link } from "@/components/common/link";
import { PageWrapper } from "@/components/common/page";
export const Route = createFileRoute("/debug/")({
component: RouteComponent,
});
function RouteComponent() {
return (
<PageWrapper sx={{ gap: "1rem", display: "flex", flexDirection: "column" }}>
<Typography variant="h4" component="h1">
Debug Pages
</Typography>
<Typography variant="body1">
This page is for debugging the application. It contains links to various
debug pages with various information.
</Typography>
<Box>
<Typography variant="h5" component="h2">
Design
</Typography>
<Box component="ul">
<Link to="/debug/design/icons">
<li>Icons overview</li>
</Link>
<Link to="/debug/design/loading">
<li>Loading states</li>
</Link>
<Link to="/debug/design/buttons">
<li>Buttons</li>
</Link>
</Box>
</Box>
<Box>
<Typography variant="h5" component="h2">
Other
</Typography>
<Box component="ul">
<Link to="/debug/jobs">
<li>Redis jobs</li>
</Link>
<Link to="/debug/error">
<li>Test error page</li>
</Link>
</Box>
</Box>
</PageWrapper>
);
}