From 94c4ece183abad626f8c571b1829f840cf65b03f Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 8 May 2023 19:45:50 +0200 Subject: [PATCH] Created the main.jsx --- client/src/main.jsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 client/src/main.jsx diff --git a/client/src/main.jsx b/client/src/main.jsx new file mode 100644 index 0000000..6e6e5f5 --- /dev/null +++ b/client/src/main.jsx @@ -0,0 +1,9 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import App from './App.jsx'; + +ReactDOM.createRoot(document.getElementById('root')).render( + + + , +); \ No newline at end of file