From 9750df120bd1336c0bc1ed2b3de1ffb379116a01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20DUPIN?= Date: Mon, 10 Oct 2022 22:10:53 +0000 Subject: [PATCH] Ajouter 'src/index.js' --- src/index.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/index.js diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..6854c91 --- /dev/null +++ b/src/index.js @@ -0,0 +1,11 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import App from './App'; + +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render( + + + , + document.getElementById('root') +); \ No newline at end of file