1.0.0 • Published 6 years ago

react-native-confetti-view v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

Confetti View

Screenshot

Installation

Using NPM:

npm i react-native-confetti-view

Using Yarn:

yarn add react-native-confetti-view

Usage

Also, see the example directory.

import React from 'react'
import { Text } from 'react-native'
import ConfettiView from '../index'

export default class MyView extends React.Component {
  render () {
    return (
      <ConfettiView>
        <Text>Hi!</Text>
      </ConfettiView>
    )
  }
}