The object of this exercise is to create a page allowing to list users. La liste sera chargée depuis un tableau statique lors du chargement de la page. The page must allow the addition of a new user via the Add user button which displays a modal allowing the entry and addition of the new user both on the users table as well as on the table of the page.
let car = [
{
id: "123456789",
createdDate: "2021-01-06T00:00:00.000Z",
model: "BMW",
registrationNumber: "2584",
},
{
id: "987654321",
createdDate: "2021-07-25T00:00:00.000Z",
modele: "Mercedes",
registrationNumber: "1594",
},
]