51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
import { Container, Row, Col, Button, Table } from 'react-bootstrap';
|
|
|
|
const Administrator = () => {
|
|
return (
|
|
<Container>
|
|
<Row>
|
|
<Col>
|
|
<h1 className="text-warning text-center font-weight-bold">Панель администратора</h1>
|
|
<div className="btn-group" role="group">
|
|
<Button variant="warning" href="/PageEdit">
|
|
Добавить товар
|
|
</Button>
|
|
</div>
|
|
</Col>
|
|
</Row>
|
|
<Row>
|
|
<Col>
|
|
<h2 className="text-warning text-center font-weight-bold" style={{ paddingTop: '10px' }}>
|
|
Таблица данных
|
|
</h2>
|
|
<Table id="items-table" striped bordered>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">№</th>
|
|
<th scope="col" className="w-25">
|
|
Товар
|
|
</th>
|
|
<th scope="col" className="w-25">
|
|
Цена
|
|
</th>
|
|
<th scope="col" className="w-10">
|
|
Акция
|
|
</th>
|
|
<th scope="col" className="w-25">
|
|
Количество
|
|
</th>
|
|
<th scope="col" className="w-25">
|
|
Сумма
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</Table>
|
|
</Col>
|
|
</Row>
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
export default Administrator;
|