Checklist For React PDF
Checklist For React PDF
By the end of the React module, you should be able to do all of the following tasks on your own,
without using the internet or referring to previous solutions or any other help.
In fact you should not wait until the end of the module. As and when the relevant lectures are
over, you should check which of these tasks you are able to do with that knowledge.
Task 1: create-react-app
1. Create a react app using npx
2. Run the server and render the default page in a browser
3. Modify the app to display “Yay! I can create a boilerplate react app on my own, without
using the internet or any other help.”
Task 2: Component
1. Create a react app using npx
2. Create a component
a. Name of the component is Greeting
b. It should render a message “Hello <name>”
c. The name will be given by the caller of the component
3. Render the Greeting component in App.js
4. Open the React app in a browser. It should display “Hello <name>”
Task 6: Navigation
1. Create a react app using npx
2. Your project should have 3 routes
a. Default route i.e / , should display a button with image written on it.
b. After clicking on button, it should redirect to /image route and this page should
display the image.
c. After clicking on image it should redirect you to /description route and
description route should have description about the image and a button with
home written on it.
d. On clicking home button it should redirect you to default route.