https://github.com/tschoffelen/react-native-confetti-view
https://github.com/tschoffelen/react-native-confetti-view
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/tschoffelen/react-native-confetti-view
- Owner: tschoffelen
- Created: 2018-05-08T13:44:49.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T05:09:13.000Z (9 months ago)
- Last Synced: 2025-03-27T00:33:56.761Z (about 2 months ago)
- Language: JavaScript
- Size: 1.46 MB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Confetti View

## Installation
Using NPM:
```
npm i react-native-confetti-view
```Using Yarn:
```
yarn add react-native-confetti-view
```### Usage
Also, see the [example directory](example).
```js
import React from 'react'
import { Text } from 'react-native'
import ConfettiView from '../index'export default class MyView extends React.Component {
render () {
return (
Hi!
)
}
}
```