mirror of
https://github.com/gosticks/react-table.git
synced 2026-08-30 22:00:18 +00:00
I have used this library to develop a big application for my company and had been required to make the columns are foldable. I saw that feature is useful and would like to share with everybody. Especially to all developers who developed this great component. Let me know if any issues with My component. I will fix it accordingly.
14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
/* eslint-disable */
|
|
|
|
import TreeTable from './treetable'
|
|
import SelectTable from './selecttable'
|
|
import SelectTreeTable from './selecttreetable'
|
|
import FoldableTable from './foldabletable';
|
|
|
|
export {
|
|
TreeTable,
|
|
SelectTable,
|
|
SelectTreeTable,
|
|
FoldableTable
|
|
}
|