Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nextml-code/react-resource-list

React component for listing resources
https://github.com/nextml-code/react-resource-list

Last synced: 1 day ago
JSON representation

React component for listing resources

Awesome Lists containing this project

README

        

# React Resource List

## Installation

```
npm install @aiwizo/react-resource-list
```

## Basic Usage

```JavaScript
import ResourceList from '@codewell/react-resource-list';

const resources = [/* resources... */];

const SomeComponent = (props) => {
return (
{...}}
onAnnotationSelect={({resource, annotation}) => {...}}
onAnnotationDelete={({resource, annotation}) => {...}}
/>
);
};

```