Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

User's Invitation app

This is a small web application where there is a list of users who can be selected to send an invitation.

App description:

The application consists of one page with the list of fetched users. There is a field to search for a user by name or email. To the right of each user there is a button to add him to the list of invited. When you click on the button below, an invitation is simulated to the selected users.

The following basic skills have been worked out:

  1. Using the useState and useEffect hooks;
  2. Using onClick events on elements;
  3. Import icons, libraries, hooks and components;
  4. Using conditional rendering using the ternary operator;
  5. Working with props;
  6. Using Fetch requests;
  7. Making a search input;
  8. Making adaptations for different screens;
  9. Using components as content loader;