Search code examples
node.jsreactjsintellij-idea

React not importing App.js file correctly


Why will my react code not import from App.js.

Anytime i load my localhost it just stays blank.

enter image description here


Solution

  • Recent updates of React require it to be layed out in the current syntax:

    const root = ReactDOM.createRoot(document.getElementById('root'));
    root.render(
        <React.StrictMode>
            <BrowserRouter>
                <App />
            </BrowserRouter>
        </React.StrictMode>