mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import usage from "./usage";
|
|
import dynamic from "./dynamic";
|
|
import empty from "./empty";
|
|
import withoutHeader from "./without-header";
|
|
import withoutWrapper from "./without-wrapper";
|
|
import customCells from "./custom-cells";
|
|
import striped from "./striped";
|
|
import singleSelection from "./single-selection";
|
|
import multipleSelection from "./multiple-selection";
|
|
import disallowEmptySelection from "./disallow-empty-selection";
|
|
import controlledSelection from "./controlled-selection";
|
|
import disabledRows from "./disabled-rows";
|
|
import selectionBehavior from "./selection-behavior";
|
|
import rowActions from "./row-actions";
|
|
import sorting from "./sorting";
|
|
import loadMore from "./load-more";
|
|
import paginated from "./paginated";
|
|
import asyncPagination from "./async-pagination";
|
|
import infinitePagination from "./infinite-pagination";
|
|
import useCase from "./use-case";
|
|
import customStyles from "./custom-styles";
|
|
|
|
export const tableContent = {
|
|
usage,
|
|
dynamic,
|
|
empty,
|
|
withoutHeader,
|
|
withoutWrapper,
|
|
customCells,
|
|
striped,
|
|
singleSelection,
|
|
multipleSelection,
|
|
disallowEmptySelection,
|
|
controlledSelection,
|
|
disabledRows,
|
|
selectionBehavior,
|
|
rowActions,
|
|
sorting,
|
|
loadMore,
|
|
paginated,
|
|
asyncPagination,
|
|
infinitePagination,
|
|
useCase,
|
|
customStyles,
|
|
};
|