24 lines
661 B
TypeScript
24 lines
661 B
TypeScript
import './App.css';
|
|
import { Card, CardContent, Container, ThemeProvider, Typography } from '@mui/material';
|
|
import { Theme } from './Theme.ts';
|
|
|
|
function App() {
|
|
return (
|
|
<>
|
|
<ThemeProvider theme={Theme}>
|
|
<Container>
|
|
<Card>
|
|
<CardContent>
|
|
<Typography fontSize={36} fontFamily='hammersmith-one'>
|
|
Hello, World!
|
|
</Typography>
|
|
</CardContent>
|
|
</Card>
|
|
</Container>
|
|
</ThemeProvider>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default App;
|