Rsr2425's picture
Got basics of FE/BE running. BE passes tests
58973c7
raw
history blame
246 Bytes
import { Typography, Box } from '@mui/material';
function Header() {
return (
<Box sx={{ mb: 4 }}>
<Typography variant="h2" component="h1" align="center">
Simplify
</Typography>
</Box>
);
}
export default Header;