热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

reactbootstrap手风琴未加载

我正在尝试在Bootstrap5中使用react-bootstrap。我想在我的一个页面中使用Accordion。为此,我只是从这个页面复制了结构->https://re

我正在尝试在 Bootstrap 5 中使用 react-bootstrap。我想在我的一个页面中使用 Accordion。为此,我只是从这个页面复制了结构-> https://react-bootstrap.netlify.app/components/accordion/。但是当我打开页面时,浏览器显示此错误-

Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
Check the render method of `Questions`.

这是我使用这个组件的代码

import Accordion from 'react-bootstrap/Accordion';
const QuestiOns= () => (


Question #1

Answer to the Question #1



Question #2

Answer to the Question #2



);
export default Questions;

其他详情:


  1. “引导程序”:“^5.0.2”

  2. “反应”:“^ 17.0.2”

  3. “反应引导”:“^ 1.6.1”

导入/导出组件时我错过了什么吗?TIA。

回答

我通过用最新的 v2.0.0beta 替换 react-bootstrap v1.6.1 解决了这个问题 -> https://www.npmjs.com/package/react-bootstrap/v/2.0.0-beta.0

npm uninstall react-bootstrap
npm i react-bootstrap@2.0.0-beta.0

我希望这能解决你的问题






推荐阅读
author-avatar
别拿明天会好做借口
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有