## React Practice ---- 1) Given list of user info. Create a react application that renders each user first and last name to the screen as a name tag or card. When the card representing the user is clicked you should display the user information obtained from the API. You can display the info in what ever form you like: User data can be found [here](https://jsonplaceholder.typicode.com/users). ---- 2) Given a list of todos render each todo to the screen. If the todo is complete show any style or message to represent that it is completed. Do the same for an imcomplete todo Todos can be found [here](https://jsonplaceholder.typicode.com/todos). --- **Requirements: ** Using what we learned about react build the above however you like but at least cover the below criteria - You must use at least one class component. - You must use at least one stateful component. - You must use at least one event listener. - You must use props. - You must use a styling library. *Do worry about self styling this is a react exercise. Let the library style your components for you.*