0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-03-26 12:38:11 +00:00

moving towards SPA

This commit is contained in:
Víctor Losada Hernández
2026-02-01 17:28:21 +01:00
parent 390ff68a6b
commit 820160d0f5
5 changed files with 138 additions and 90 deletions

5
client/main.jsx Normal file
View File

@@ -0,0 +1,5 @@
import { createRoot } from "react-dom/client";
import App from "./App";
const root = createRoot(document.getElementById("reactRoot"));
root.render(<App />);