= ({
+ totalCount,
+ currentPage,
+ onPageChange,
+
+ hasTopPagination = false,
+ hasBottomPagination = false,
+
+ toolbarBulkSelector,
+ toolbarToggle,
+ toolbarActions,
+ toolbarClearAllFilters,
+
+ ...rest
+}) => {
+ return (
+
+
+
+ {toolbarBulkSelector}
+ {toolbarToggle && (
+ } breakpoint="xl">
+ {toolbarToggle}
+
+ )}
+ {toolbarActions}
+ {hasTopPagination && (
+
+
+
+ )}
+
+
+
+ {hasBottomPagination && (
+
+ )}
+
+ );
+};
diff --git a/src/components/SimpleTableWithToolbar/index.ts b/src/components/SimpleTableWithToolbar/index.ts
new file mode 100644
index 0000000..f414296
--- /dev/null
+++ b/src/components/SimpleTableWithToolbar/index.ts
@@ -0,0 +1,3 @@
+export * from './SimplePagination';
+export * from './SimpleTableWithToolbar';
+export * from './SimpleTable';
diff --git a/src/index.ts b/src/index.ts
index 2c2a8f1..1f1db21 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,3 +1,6 @@
+export * from './components/SimplePlaceholder';
+export * from './components/SimpleSelect';
+export * from './components/SimpleTableWithToolbar';
export * from './components/StatusIcon';
export * from './hooks/useDelete';