Corin1998 commited on
Commit
a2a1ff3
·
verified ·
1 Parent(s): 41f1076

Create src/main.tsx

Browse files
Files changed (1) hide show
  1. 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 />);