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 c6953bbCopy full SHA for c6953bb
src/routes/FixedTarget.tsx
@@ -1,9 +1,20 @@
1
-import { Box } from "@mui/material";
+import { Box, Typography, useTheme } from "@mui/material";
2
import { ParamsPanel } from "../screens/CollectionPanel";
3
4
export function FixedTarget() {
5
+ const theme = useTheme();
6
return (
- <Box>
7
+ <Box marginTop={2}>
8
+ <Typography
9
+ variant="h1"
10
+ sx={{
11
+ color: theme.palette.info.main,
12
+ fontSize: 24,
13
+ fontWeight: "fontWeightBold",
14
+ }}
15
+ >
16
+ Fixed Target Data Collection Setup
17
+ </Typography>
18
<ParamsPanel />
19
</Box>
20
);
0 commit comments