-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
34 lines (30 loc) · 865 Bytes
/
index.js
File metadata and controls
34 lines (30 loc) · 865 Bytes
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
27
28
29
30
31
32
33
34
import ConfigCollector from './lib/ConfigCollector';
import DefaultGridTemplate from './lib/templates/DefaultGridTemplate';
import { buildGridWithTemplate } from './lib/GridBuilder';
import Body from './lib/Body';
import Row from './lib/Row';
import Cell from './lib/Cell';
import HeaderRow from './lib/HeaderRow';
import DefaultHeaderCell from './lib/DefaultHeaderCell';
import FilterRow from './lib/FilterRow';
import Column from './lib/Column';
import Pager from './lib/Pager';
import Filter from './lib/Filter';
import { ASCENDING, DESCENDING } from './lib/constants';
const DefaultGrid = buildGridWithTemplate(DefaultGridTemplate);
export {
ConfigCollector,
buildGridWithTemplate,
DefaultGrid,
Body,
Row,
Cell,
HeaderRow,
FilterRow,
Filter,
Column,
Pager,
ASCENDING,
DESCENDING,
DefaultHeaderCell
};