summaryrefslogtreecommitdiff
path: root/src/components/DataTable.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/DataTable.tsx')
-rw-r--r--src/components/DataTable.tsx29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/components/DataTable.tsx b/src/components/DataTable.tsx
new file mode 100644
index 0000000..e75af18
--- /dev/null
+++ b/src/components/DataTable.tsx
@@ -0,0 +1,29 @@
+import React from 'react';
+import ListTable from './ListTable';
+import Button from './Button';
+
+interface Field {
+ key: string;
+ label: string;
+}
+
+interface Props {
+ title: string;
+ items: any[];
+ fields: Field[];
+ handleRowClick?: (index: number) => void;
+}
+
+const DataTable: React.FC<Props> = ({ title, items, fields, handleRowClick = () => {} }) => {
+ return (
+ <>
+ <div className="mb-2 flex justify-between items-center">
+ <span className="text-2xl font-bold">{title}</span>
+ <Button size="sm">Добавить</Button>
+ </div>
+ <ListTable items={items} fields={fields} handleRowClick={handleRowClick} />
+ </>
+ );
+};
+
+export default DataTable;