Why will my react code not import from App.js.
Anytime i load my localhost it just stays blank.
Why will my react code not import from App.js.
Anytime i load my localhost it just stays blank.
In the root(line: 9), you need to render App Component to see its content ...
root.render(
<App />
);