Import Issue for React-Table

后端 未结 4 1566
我在风中等你
我在风中等你 2021-01-21 23:51

I am creating a table in react using react-table library. Few days back, I had created a table using the same library and faced no issues. But today I am getting the following e

4条回答
  •  误落风尘
    2021-01-22 00:43

    Solved the problem!!!

    You have to install

    npm install react-table-6

    and then import

    import React, {Component} from 'react';
    
    import ReactTable from 'react-table-6';
    
    import 'react-table-6/react-table.css';
    
    

    its solved:) Reference https://www.npmjs.com/package/react-table-6

提交回复
热议问题