summaryrefslogtreecommitdiff
path: root/src/containers/Products.tsx
blob: c96e6a9e9ed12d44f7e282a456b9570c35ed7367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import React from 'react';
import Paper from '../components/Paper';
import ListTable from '../components/ListTable';

const fields = [
  { key: '_id', label: 'ID' },
  { key: 'name', label: 'Название' },
  { key: 'type', label: 'Тип' },
];

const items = [
  { _id: 1, name: 'Товар 1', type: 'Кондиционер' },
  { _id: 2, name: 'Товар 2', type: 'Кондиционер' },
  { _id: 3, name: 'Товар 3', type: 'Кондиционер' },
  { _id: 4, name: 'Товар 4', type: 'Кондиционер' },
  { _id: 5, name: 'Товар 5', type: 'Кондиционер' },
  { _id: 6, name: 'Товар 6', type: 'Кондиционер' },
];

const Home: React.FC = () => (
  <Paper>
    <ListTable items={items} fields={fields} />
  </Paper>
);

export default Home;