Question: React Question 1. Build a component to display Employees with 4 columns: id, name, salary, age. const CURRENT_EMPLOYEES = [ { id: 1, employee_name: Tiger

React Question

1. Build a component to display Employees with 4 columns: id, name, salary, age.

const CURRENT_EMPLOYEES = [
 {
 id: 1,
 employee_name: "Tiger Nixon",
 employee_salary: 320800,
 employee_age: 61
 },
 {
 id: 2,
 employee_name: "Garrett Winters",
 employee_salary: 170750,
 employee_age: 63
 },
 {
 id: 3,
 employee_name: "Ashton Cox",
 employee_salary: 86000,
 employee_age: 66
 },
 {
 id: 4,
 employee_name: "Cedric Kelly",
 employee_salary: 433060,
 employee_age: 22
 },
 {
 id: 5,
 employee_name: "Airi Satou",
 employee_salary: 162700,
 employee_age: 33
 }];

2. Add delete functionality to the Employee Table.

3. Hide the Employee , Show All Hidden Button on TOP -> show all the employees on Top of Employee Table

4. Button 1: Show only Employees who make more than 200k

5. Button 2: Show only Employees who make less than 200k 6. Button 3: Reset <- show all the employees

7. Add employee functionality on Employee Table

Thank you!

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!