Skip to content

jflores08/ironbook

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

logo_ironhack_blue 7

React | Ironbook

In this exercise, we are going to create a book to display the list of people who did the bootcamp.

Submission

  • Upon completion, run the following commands

    git add .
    git commit -m "done"
    git push origin master
    
  • Create Pull Request so your TAs can check up your work.

Installation

You can create a new React application by doing:

$ npx create-react-app starter-code
$ cd starter-code

Then you can move the file users.json to starter-code/src/users.json.

Before starting

To make the exercise easier, create only 1 component App. We will learn later who to create more complex website with multiple components that communicate each other.

Instructions

Iteration 1

Display the list of all Ironhackers in a table.

You don't have to use any state for this iteration. You can get the list of users by simply typing:

import users from "./users";

Make sure when you do this that the file users.json is in starter-code/src/users.json.

This is a screenshot of what you can have by the end of the iteration.

img

As you can see, only some users have a LinkedIn link.

Iteration 2

Add a search bar to search by first name or last name. You should create a new state search for this iteration.

img

Iteration 3

Add 2 checkboxes to search by type: "teacher" or "student".

img

Iteration 4

Add a select to search by country.

img

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 70.7%
  • HTML 20.9%
  • CSS 8.4%