Skip to content

Commit a24df43

Browse files
committed
Add an empty extruder route
1 parent da07781 commit a24df43

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/routes/Extruder.tsx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { Box, Typography, useTheme } from "@mui/material";
2+
3+
export function Extruder() {
4+
const theme = useTheme();
5+
return (
6+
<Box marginTop={2}>
7+
<Typography
8+
variant="h1"
9+
sx={{
10+
color: theme.palette.info.main,
11+
fontSize: 24,
12+
fontWeight: "fontWeightBold",
13+
}}
14+
>
15+
Extruder Data Collection Setup
16+
</Typography>
17+
</Box>
18+
);
19+
}

0 commit comments

Comments
 (0)