Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emanuelescarabattoli/react-ribbons
A fancy collection of ribbons components for React
https://github.com/emanuelescarabattoli/react-ribbons
components javascript package react reactjs ribbon
Last synced: 10 days ago
JSON representation
A fancy collection of ribbons components for React
- Host: GitHub
- URL: https://github.com/emanuelescarabattoli/react-ribbons
- Owner: emanuelescarabattoli
- License: mit
- Created: 2019-11-13T11:04:03.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-04T05:38:11.000Z (10 months ago)
- Last Synced: 2024-09-19T03:14:35.975Z (about 2 months ago)
- Topics: components, javascript, package, react, reactjs, ribbon
- Language: JavaScript
- Homepage: https://emanuelescarabattoli.github.io/react-ribbons/index.html
- Size: 1.2 MB
- Stars: 8
- Watchers: 3
- Forks: 8
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
## Installation
To install the package you can use NPM or Yarn and run the following command:
```
// Enter project folder
cd package// NPM setup
npm install react-ribbons// Yarn setup
yarn add react-ribbons
```## Example usage
```js
import { RibbonContainer, Right } from "react-ribbons";const MyComponent = () => (
Foo bar
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
);export default MyComponent;
```