Search⌘ K

The Create-react-app component

Explore how to build a React class component using JSX and imports. Learn about the render function, exporting components, and incorporating images to create a simple React app layout.

We'll cover the following...

Modules

Remember how default objects can be exported without curly braces? So we import React line 1 (referring to the code given below) as default and component as named. On line 2 we import the logo from the logo.svg file. It was exported as default with the name logo from another file already. ...