acecalisto3 commited on
Commit
7891d7b
·
verified ·
1 Parent(s): 3dadbd0

Create index.tsx

Browse files
Files changed (1) hide show
  1. index.tsx +12 -0
index.tsx ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import React, { StrictMode } from "react";
2
+ import { createRoot } from "react-dom/client";
3
+ import "./styles.css";
4
+
5
+ import App from "./App";
6
+
7
+ const root = createRoot(document.getElementById("root"));
8
+ root.render(
9
+ <StrictMode>
10
+ <App />
11
+ </StrictMode>
12
+ );