如何修复“模块找不到:无法解析‘反应’”?(How to fix “Module not found

2019-10-30 00:06发布

我试图让particlesjs运行的反应。 但是,这似乎并没有work..So,我试图用反应粒子-JS。但它给了我这个错误:模块未找到:在“C无法解析“反应”:\用户\阿米特\ node_modules \颗粒-JS \ lib中”

        import React, { Component } from 'react';

        import ParticleAnimation from 'particles-js';

         class Example extends Component {
            render () {
               return (
              <ParticleAnimation />
          )
        }
       }export default Example;

我一直在试图惹的import语句的文件路径,但到目前为止没有奏效。 感谢您的时间。

Answer 1:

尝试在你的项目重新安装,

纱线添反应

要么

NPM我反应--save



文章来源: How to fix “Module not found: Can't resolve 'react'”?