我试图让粒子在react中运行。但这似乎不起作用..所以,我尝试使用 react-particles-js 。但它给了我这个错误:找不到module:无法解析 'C:\Users\Amit\node_modules\粒子-js\lib'
import React, { Component } from 'react';
import ParticleAnimation from 'particles-js';
class Example extends Component {
render () {
return (
<ParticleAnimation />
)
}
}export default Example;
我一直试图弄乱导入语句中的文件路径,但到目前为止没有任何效果。