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

https://github.com/tschoffelen/react-native-confetti-view


https://github.com/tschoffelen/react-native-confetti-view

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Confetti View

![Screenshot](screenshot.png)

## 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!

)
}
}
```