我想要在我的react/redux应用程序中reactstrap中的最新提交。我已经将它添加到我的package.json中:
"dependencies": {
"reactstrap": "git@github.com:reactstrap/reactstrap.git#24951541a110451c167ff53e6ebb367972717bc5",
}它看起来安装得很好,但是当我用npm start启动我的开发服务器时,我得到了以下错误:
Module not found: 'reactstrap' in /myapp/src/views/Scans我需要做什么特殊的事情才能以这种方式安装它并正确地包含它?
谢谢!
发布于 2018-02-16 00:37:03
我正在研究reactstrap的docs。
您是否也按照安装说明安装了bootstrap?
npm install --save bootstrap
npm install --save reactstraphttps://stackoverflow.com/questions/48810995
复制相似问题