regroup backend and frontend in app folder
This commit is contained in:
7
app/frontend/src/main.tsx
Normal file
7
app/frontend/src/main.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
import { createRoot } from "react-dom/client";
|
||||
import App from "./App.tsx";
|
||||
import "./index.css";
|
||||
import { registerSW } from 'virtual:pwa-register';
|
||||
|
||||
createRoot(document.getElementById("root")!).render(<App />);
|
||||
registerSW({ immediate: true });
|
||||
Reference in New Issue
Block a user