Rsr2425's picture
Updated tests
a372176
raw
history blame contribute delete
246 Bytes
import { Typography, Box } from '@mui/material';
function Header() {
return (
<Box sx={{ mb: 4 }}>
<Typography variant="h2" component="h1" align="center">
SimpliFi
</Typography>
</Box>
);
}
export default Header;