Wednesday, February 20, 2019

React Useful Open Source Libraries

REACT-PERMISSIBLE

Making the permission management for components easier.

<PermissibleRender
  userPermissions={['ACCESS_DASHBOARD', 'ACCESS_ADMIN']}
  requiredPermissions={['ACCESS_DASHBOARD', 'ACCESS_ADMIN']}
>
  <AccessGranted/>
</PermissibleRender>


react-virtualized


React components for efficiently rendering large lists and tabular data. Check out the demo for some examples. Join the official Slack chat at react-virtualized.now.sh.

REACT-Timline - 9000 


http://bhp-react-timeline-9k.s3-website-ap-southeast-2.amazonaws.com


A performance focused timeline component in react

REACT-carousel


Feature-rich, react-way react component that does not suck, same like slick.js



REACT-Error-boundary


This component provides a simple and reusable wrapper that you can use to wrap around your components. Any rendering errors in your components hierarchy can then be gracefully handled.
import ErrorBoundary from 'react-error-boundary';

<ErrorBoundary>
  <ComponentThatMayError />
</ErrorBoundary>

No comments:

Post a Comment

function declaration, expression and call/invoke/execution

  The  function  declaration defines a function with the specified parameters. The  function   keyword can be used to define a function ins...