-
-
-# LAB | React Training
-
-
-
-## Introduction
-
-
-
-The purpose of this exercise is to practice the core React concepts such as: creating components, passing data through props, working with state, rendering lists, and working with forms (controlled components).
-
-
-
-To see the expected result for each iteration, refer to the solution example: [**React Training - solution**](https://5c6c2a0de07b084ce35373ee--determined-aryabhata-a8a833.netlify.com/).
-
-
-
-## Setup
-
-
-
-- Fork this repo
-
-- Clone this repo
-
-
-
-```shell
-
-$ cd lab-react-training
-
-$ npm install
-
-$ npm start
-
-```
-
-
-
-
-
-
-
-## Submission
-
-
-
-- Upon completion, run the following commands:
-
-
-
-```
-
-git add .
-
-git commit -m "done"
-
-git push origin master
-
-```
-
-
-
-- Create a Pull Request so we can review your work.
-
-
-
-## Instructions
-
-
-
-### Iteration 1 | Component: `IdCard`
-
-
-
-Create and render an `IdCard` component with 6 props:
-
-
-
-- `lastName`: A string
-
-- `firstName`: A string
-
-- `gender`: A string, `'male'` or `'female'`
-
-- `height`: A number
-
-- `birth`: A date
-
-- `picture`: A string
-
-
-
-**Example:**
-
-
-
-```jsx
-
-
- Edit src/App.js and save to reload.
-
{car.model} - {car.licensePlate}
++ First Name: {user.firstName} +
++ Last Name: {user.lastName} +
++ Gender: {user.gender} +
++ Height: {user.height} cm +
++ Birth: {new Date(user.birth).toDateString()} +
+RGB Color: rgb({rgbValues.r}, {rgbValues.g}, {rgbValues.b})
+