forked from lodev09/react-native-cell-components
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
31 lines (30 loc) · 891 Bytes
/
index.js
File metadata and controls
31 lines (30 loc) · 891 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
import CellTags from './components/CellTags';
import SelectList from './components/SelectList';
import Cell from './components/Cell';
import CellInput from './components/CellInput';
import CellGroup from './components/CellGroup';
import CellDatePicker from './components/CellDatePicker';
import CellListProvider, { CellListItem } from './components/CellListProvider';
import CellSheet from './components/CellSheet';
import ActionSheet, { ActionItem } from './components/ActionSheet';
import DatePicker from './components/DatePicker';
import CellSlider from './components/CellSlider';
import CellSwitch from './components/CellSwitch';
import Icon from './lib/Icon';
module.exports = {
CellTags,
SelectList,
ActionSheet,
ActionItem,
DatePicker,
CellInput,
Cell,
CellGroup,
CellListProvider,
CellListItem,
CellDatePicker,
CellSheet,
CellSlider,
CellSwitch,
Icon
}