0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-03-27 21:08:13 +00:00
This commit is contained in:
Víctor Losada Hernández
2026-02-01 17:55:51 +01:00
parent 9dc2752ac3
commit 215d24b99a
5 changed files with 45 additions and 38 deletions

9
client/homebrew/main.jsx Normal file
View File

@@ -0,0 +1,9 @@
import { createRoot } from "react-dom/client";
import { BrowserRouter } from "react-router-dom";
import App from "./App";
createRoot(document.getElementById("reactRoot")).render(
<BrowserRouter>
<App />
</BrowserRouter>
);