1.0.3 • Published 3 years ago

users-list v1.0.3

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

This NPM library will simply return you the list for random users.

Example:

const UserList = require('users-list');

useEffect(()=>{ UserList() .then((res) => { // If the function successfully retrieves the data, it enters this block console.log(res); // Print the contest data on the console }) .catch((err) => { console.log(err); // Error handler }); })