首页 > 解决方案 > 尝试导入错误:“reactstrap”不包含默认导出(导入为“表”)

问题描述

我什至尝试import {Table} from 'reactstrap';使用花括号。当与花括号一起使用时,数据将出现但不作为表格。我的 reactstrap 也是最新版本。这是显示的错误:尝试导入错误:“reactstrap”不包含默认导出(导入为“表”)。 这是我的 Assignment.js。

import Table from 'reactstrap';

class Assignment extends Component{

  render(){
      return(

     <Table dark>
      <thead>
        <tr>
          <th>#</th>
          <th>First Name</th>
          <th>Last Name</th>
          <th>Username</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <th scope="row">1</th>
          <td>Mark</td>
          <td>Otto</td>
          <td>@mdo</td>
        </tr>
        <tr>
          <th scope="row">2</th>
          <td>Jacob</td>
          <td>Thornton</td>
          <td>@fat</td>
        </tr>
        <tr>
          <th scope="row">3</th>
          <td>Larry</td>
          <td>the Bird</td>
          <td>@twitter</td>
        </tr>
      </tbody>
    </Table>

      )
  }
}

导出默认作业;`

标签: reactjsimportexportversionreactstrap

解决方案


https://reactstrap.github.io/?path=/docs/home-upgrading--page

移除的组件

InputGroupAddon - This in no longer needed in Bootstrap 5, you can now add Buttons, Inputs directly to InputGroups in the order you wish.
InputGroupButtonDropdown - This can now be replaced with a regular Dropdown component.
CustomInput - These are no longer needed in Bootstrap 5, since all form inputs will be styled by Bootstrap instead of browser default. The existing Input component now supports file, select, switch, and range types.
Jumbotron - Jumbotrons have been removed from Bootstrap 5, can be replaced with <div class="rounded px-3 px-sm-4 py-3 py-sm-5">. Jumbotron fluid can be replaced with <div class="bg-light mb-4 py-3 py-sm-5">

推荐阅读