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