
React Key Concepts
By :

With this and the previous chapter, you have all the knowledge you need to create a React project and populate it with some first, basic components.
Below, you'll find your first two practical activities for this book:
Suppose you are creating your personal portfolio page, and as part of that page, you want to output some basic information about yourself (e.g., your name or age). You could use React and build a React component that outputs this kind of information, as outlined in the following activity.
The aim is to create a React app as you learned it in the previous chapter (i.e., create it via npm create vite@latest <your-project-name>
, run npm run dev
to start the development server) and edit the App.jsx
file such that you output some basic information about yourself. You could, for example output your full name, address, job title or other kinds of information. In the end, it is up to you what...