Spaces:
Runtime error
Runtime error
Create index.tsx
Browse files
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 |
+
);
|