-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.js
34 lines (30 loc) · 793 Bytes
/
index.js
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 Table from './src/Table';
import Section from './src/Section';
import Cell from './src/Cell';
import AccessoryCell from './src/AccessoryCell';
import IconCell from './src/IconCell';
import StaticCell from './src/StaticCell';
import TouchableCell from './src/TouchableCell';
import BioCell from './src/BioCell';
import KeyValueCell from './src/KeyValueCell';
import SwitchCell from './src/SwitchCell';
import { ThemeConsumer, ThemeContext, ThemeProvider } from './src/ThemeContext';
import { blendColors, getColorPalette } from './src/assets/colors';
export default Table;
export {
Table,
Section,
Cell,
AccessoryCell,
IconCell,
StaticCell,
TouchableCell,
BioCell,
KeyValueCell,
SwitchCell,
ThemeContext,
ThemeConsumer,
ThemeProvider,
blendColors,
getColorPalette,
};