Search⌘ K
AI Features

Header Component

Explore how to build the Header component that displays the app title in a JavaScript Quiz application. Understand the use of named and default exports in ReactJS, manage question data with arrays, and apply CSS styling to enhance the app's appearance. This lesson guides you to customize both functionality and look for a personalized user experience.

Add the Header component

The Header component in the header.js file is responsible for displaying our app name, JavaScript Quiz, on the top of our screen. To style the Header component, we give it the header class, which already has properties in the index.css file attached to it.

<div className="header">
   <h1>JavaScript Quiz </h1>
</div>

Add the questions

We’ve included 10 ...