From adf99551b93129a252a6532e753204af8cab0134 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 11 Sep 2022 22:04:09 +0200 Subject: [PATCH] Updated the main.jsx --- src/main.jsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/main.jsx b/src/main.jsx index 873175b..1e657d4 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -3,8 +3,10 @@ import ReactDOM from 'react-dom/client'; import App from './App'; import './index.css'; -ReactDOM.createRoot(document.getElementById('root')).render( - - - -) +const root = ReactDOM.createRoot(document.getElementById('root')); + +root.render( + + + +); \ No newline at end of file