React DOM

Now that we've learned about component definitions and their instantiation, we can move to the App component's instantiation.

We'll cover the following...

The App component has been in our application from the start, in the src/index.js file:

Press + to interact
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
<App />,
document.getElementById('root')
);

Next to React, there is another imported library called ...

Access this course and 1400+ top-rated courses and projects.