summaryrefslogtreecommitdiff
path: root/client/src/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/index.js')
-rw-r--r--client/src/index.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/client/src/index.js b/client/src/index.js
new file mode 100644
index 0000000..1675893
--- /dev/null
+++ b/client/src/index.js
@@ -0,0 +1,11 @@
+import React from 'react';
+import ReactDOM from 'react-dom/client';
+import './index.css';
+import App from './App';
+
+const root = ReactDOM.createRoot(document.getElementById('root'));
+root.render(
+ <React.StrictMode>
+ <App />
+ </React.StrictMode>
+); \ No newline at end of file