We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da07781 commit a24df43Copy full SHA for a24df43
src/routes/Extruder.tsx
@@ -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