Skip to content

Commit c6953bb

Browse files
committed
Add a title to fixed target page
1 parent da07781 commit c6953bb

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

src/routes/FixedTarget.tsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1-
import { Box } from "@mui/material";
1+
import { Box, Typography, useTheme } from "@mui/material";
22
import { ParamsPanel } from "../screens/CollectionPanel";
33

44
export function FixedTarget() {
5+
const theme = useTheme();
56
return (
6-
<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>
718
<ParamsPanel />
819
</Box>
920
);

0 commit comments

Comments
 (0)