Component to show list of users as a score. Built in React.
npm install new-users-score --save-dev
-
users: PropTypes.arrayOf(PropTypes.object) or PropTypes.arrayOf(PropTypes.instanceOf(User))
- *Required
import NewUsersScore from 'new-users-score';
const YourComponent = () => {
//const users is an array of User Class
return (
<div>
<NewUsersScore users={users} />,
</div>
)
};
- React - Library
- PropTypes - Require props for types
- ClassNames - Used to manage classes dynamically
- Jonas Antonelli -jonasantonelli
This project is licensed under the MIT License - see the LICENSE.md file for details