This commit is contained in:
Eden Kirin
2024-01-15 23:33:23 +01:00
parent f220d08800
commit 8bc736114c
26 changed files with 20149 additions and 0 deletions

25
frontend/src/App.js Normal file
View File

@ -0,0 +1,25 @@
import { ThemeProvider, createTheme } from "@mui/material/styles";
import Container from "@mui/material/Container";
import Typography from "@mui/material/Typography";
import { Home } from "./pages/Home";
const darkTheme = createTheme({
palette: {
mode: "light",
},
});
function App() {
return (
<ThemeProvider theme={darkTheme}>
<Container fixed>
<Typography variant="h2" gutterBottom>
Komponiranje frontend demo
</Typography>
<Home />
</Container>
</ThemeProvider>
);
}
export default App;