├── .gitignore ├── .npmignore ├── README.md ├── assets ├── demo1.gif ├── demo2.gif └── demo3.gif ├── package.json ├── src ├── Confetti.tsx └── index.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | *.tgz 4 | credentials 5 | tmp.ts -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | assets -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewBieBR/react-native-magic-confetti/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewBieBR/react-native-magic-confetti/HEAD/assets/demo1.gif -------------------------------------------------------------------------------- /assets/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewBieBR/react-native-magic-confetti/HEAD/assets/demo2.gif -------------------------------------------------------------------------------- /assets/demo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewBieBR/react-native-magic-confetti/HEAD/assets/demo3.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewBieBR/react-native-magic-confetti/HEAD/package.json -------------------------------------------------------------------------------- /src/Confetti.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewBieBR/react-native-magic-confetti/HEAD/src/Confetti.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewBieBR/react-native-magic-confetti/HEAD/src/index.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewBieBR/react-native-magic-confetti/HEAD/yarn.lock --------------------------------------------------------------------------------