Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nextml-code/react-resource-list
- Owner: nextml-code
- License: apache-2.0
- Created: 2020-09-25T12:21:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-29T13:16:05.000Z (over 3 years ago)
- Last Synced: 2023-03-05T13:34:09.042Z (almost 2 years ago)
- Language: JavaScript
- Size: 1.67 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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}) => {...}}
/>
);
};```