switch frontend to preact
This commit is contained in:
parent
6f1b94c040
commit
0a94e2bf93
57 changed files with 3366 additions and 1803 deletions
20
frontend/src/app.tsx
Normal file
20
frontend/src/app.tsx
Normal file
|
@ -0,0 +1,20 @@
|
|||
import { Provider } from "react-redux";
|
||||
import { CssBaseline } from "@mui/material";
|
||||
|
||||
import store from "$lib/store";
|
||||
import Layout from "$components/layout";
|
||||
|
||||
import DefaultHead from "./DefaultHead";
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<>
|
||||
<CssBaseline>
|
||||
<Provider store={store}>
|
||||
<DefaultHead />
|
||||
<Layout />
|
||||
</Provider>
|
||||
</CssBaseline>
|
||||
</>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue