Semantic-ui-react 未找到模块
Semantic-ui-react module not found
我尝试将语义 UI 添加到我的 React 项目中。我使用了 CDN 并将 CDN link 包含在索引文件的 header.
中
然后我添加了一个带有语义的按钮 UI 然后它显示错误
./src/signupComponent/Signup.js
Module not found: Can't resolve 'semantic-ui-react' in '/home/kavindu/Documents/react_projects/ocr_web_app/src/signupComponent'
然后我通过这段代码
为项目安装了语义UI
npm install semantic-ui-css
但是这个问题还没有解决,我安装了好几次semantic ui。
解决方法是什么?错误尚未解决。
可以安装
yarn add semantic-ui-react
或
npm install semantic-ui-react
需要停止服务器并安装包。
我尝试将语义 UI 添加到我的 React 项目中。我使用了 CDN 并将 CDN link 包含在索引文件的 header.
中然后我添加了一个带有语义的按钮 UI 然后它显示错误
./src/signupComponent/Signup.js
Module not found: Can't resolve 'semantic-ui-react' in '/home/kavindu/Documents/react_projects/ocr_web_app/src/signupComponent'
然后我通过这段代码
为项目安装了语义UInpm install semantic-ui-css
但是这个问题还没有解决,我安装了好几次semantic ui。
解决方法是什么?错误尚未解决。
可以安装
yarn add semantic-ui-react
或
npm install semantic-ui-react
需要停止服务器并安装包。