嗨,我想在Visual Studio中重用项目中的一些React组件。我使用Create-react-app创建了一个应用程序,并且一直在安装组件所需的所有依赖项,但是由于某种原因,我无法从引导程序中获取字形导出到导出。
我收到此错误:
./src/components/NavMenu.js
Attempted import error: 'Glyphicon' is not exported from 'react-bootstrap'.
即使它不在原始应用程序中,我也将其包含在Index.html中
<link rel="stylesheet" href="https://getbootstrap.com/docs/3.3/dist/css/bootstrap.min.css">
在我的Index.js中,我还导入了Bootstrap CSS,但这也许是我做错事的地方。
import 'bootstrap/dist/css/bootstrap.css';
import 'bootstrap/dist/css/bootstrap-theme.css';
编辑:我也在我的NavMenu.js中导入了glyphicon:
import { Glyphicon, Nav, Navbar, NavItem } from 'react-bootstrap';