Create src/main.tsx
Browse files- frontend/src/main.tsx +5 -0
frontend/src/main.tsx
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React from "react";
|
| 2 |
+
import { createRoot } from "react-dom/client";
|
| 3 |
+
import App from "./App";
|
| 4 |
+
|
| 5 |
+
createRoot(document.getElementById("root")!).render(<App />);
|