React not importing App.js file correctly

Viewed 19
1 Answers

In the root(line: 9), you need to render App Component to see its content ...

root.render(
    <App />
 );
Related