Initial
This commit is contained in:
17
src/components/AppHeader.tsx
Normal file
17
src/components/AppHeader.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
import React from "react";
|
||||
import { Container, Typography } from "@mui/material";
|
||||
import Stack from "@mui/material/Stack";
|
||||
import RadarIcon from "@mui/icons-material/Radar";
|
||||
|
||||
export default function AppHeader() {
|
||||
return (
|
||||
<>
|
||||
<Container maxWidth={false} className="app-header">
|
||||
<Stack direction="row" justifyContent="flex-start" alignItems="center" spacing={2}>
|
||||
<RadarIcon fontSize="large" className="icon" />
|
||||
<Typography component="h1">pingator</Typography>
|
||||
</Stack>
|
||||
</Container>
|
||||
</>
|
||||
);
|
||||
}
|
||||
5
src/components/Dashboard.tsx
Normal file
5
src/components/Dashboard.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import React from "react";
|
||||
|
||||
export default function Dashboard() {
|
||||
return <h1>Hello world</h1>;
|
||||
}
|
||||
Reference in New Issue
Block a user