summaryrefslogtreecommitdiff
path: root/src/containers/Products.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/Products.tsx')
-rw-r--r--src/containers/Products.tsx32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/containers/Products.tsx b/src/containers/Products.tsx
deleted file mode 100644
index 0b6ea70..0000000
--- a/src/containers/Products.tsx
+++ /dev/null
@@ -1,32 +0,0 @@
-import React from 'react';
-import { useHistory } from 'react-router-dom';
-import Page from './Page';
-import ListTable from '../components/ListTable';
-import { useProducts } from '../hooks/useAPIClient';
-
-const fields = [
- { key: 'name', label: 'Название' },
- { key: 'price', label: 'Цена' },
-];
-
-const actions = [
- { name: 'Добавить', route: 'products/add' },
-];
-
-const Products: React.FC = () => {
- const history = useHistory();
- const { data: products } = useProducts();
-
- const handleRowClick = (index: number) => {
- const product = products && products[index];
- history.push(`/products/edit/${product?._id}`);
- };
-
- return (
- <Page title="Товары" actions={actions}>
- <ListTable items={products} fields={fields} handleRowClick={handleRowClick} />
- </Page>
- );
-};
-
-export default Products;