Jun 26, 2024
App
) is rendered.index.js
file inside the src
folder.App
component is rendered to the DOM at the element with id="root"
.App
component is a function that returns JSX (not HTML).
App
className
(camelCase) instead of class
.
class
is reserved in JavaScript.import React from 'react'
was necessary at the top of the file.div
with the class name App
.div
with the class content
:
<div className="content">
<h1>App Component</h1>
</div>
export default App;
index.js
:
import App from './App';
ReactDOM
library.