wufe / react-particles-js

Particles.js for React
https://rpj.bembi.dev/
MIT License
1.15k stars 106 forks source link

react-particles-js can not working #56

Closed godspeedgld closed 6 years ago

godspeedgld commented 6 years ago

My step is follow :

1 create react project using create-react-app , 2 npm install react-particles-js. 3 import lib using import Particles from 'react-particles-js'; 4 add to app component

But when I use npm start. the page is blank. no particle effect show.

My App.js is follow: <Particles params={{ "particles": { "number": { "value": 50 }, "size": { "value": 3 } }, "interactivity": { "events": { "onhover": { "enable": true, "mode": "repulse" } } } }} />

My package : { "name": "testpaticle", "version": "0.1.0", "private": true, "dependencies": { "react": "^16.5.2", "react-dom": "^16.5.2", "react-particles-js": "^2.3.0", "react-scripts": "1.1.5" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test --env=jsdom", "eject": "react-scripts eject" } }