Preview: http://dashboards.webkom.co/react/airframe
This commit is contained in:
Tomasz Owczarczyk
2019-08-15 00:54:44 +02:00
parent f975443095
commit 37092d1d6c
626 changed files with 56691 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
import React from 'react';
import { Container, Row, Col } from './../../../components';
import {
AdvancedTableA,
AdvancedTableB,
BasicTable,
BorderedTable,
CellEdit,
ClearSearch,
LargeTable,
SortTable
} from './components';
import { HeaderMain } from "../../components/HeaderMain";
export const ExtendedTable = () => (
<Container>
<HeaderMain
title="Extended Tables"
className="mb-5 mt-4"
/>
<Row className="mb-5">
<Col>
<AdvancedTableA />
</Col>
</Row>
<Row className="mb-5">
<Col>
<AdvancedTableB />
</Col>
</Row>
<Row className="mt-5">
<Col>
<BasicTable />
</Col>
</Row>
<Row className="mt-5">
<Col>
<LargeTable />
</Col>
</Row>
<Row className="mt-5">
<Col>
<BorderedTable />
</Col>
</Row>
<Row className="mt-5">
<Col>
<SortTable />
</Col>
</Row>
<Row className="mt-5">
<Col>
<ClearSearch />
</Col>
</Row>
<Row className="mt-5">
<Col>
<CellEdit />
</Col>
</Row>
</Container>
);