forked from rilyu/teaset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
84 lines (71 loc) · 2.33 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// index.js
'use strict';
import Theme from './themes/Theme';
import Label from './components/Label/Label';
import Button from './components/Button/Button';
import Checkbox from './components/Checkbox/Checkbox';
import Input from './components/Input/Input';
import Select from './components/Select/Select';
import Stepper from './components/Stepper/Stepper';
import SearchInput from './components/SearchInput/SearchInput';
import Badge from './components/Badge/Badge';
import Popover from './components/Popover/Popover';
import NavigationBar from './components/NavigationBar/NavigationBar';
import ListRow from './components/ListRow/ListRow';
import Carousel from './components/Carousel/Carousel';
import Projector from './components/Projector/Projector';
import SegmentedBar from './components/SegmentedBar/SegmentedBar';
import SegmentedView from './components/SegmentedView/SegmentedView';
import TabView from './components/TabView/TabView';
import TransformView from './components/TransformView/TransformView';
import AlbumView from './components/AlbumView/AlbumView';
import Wheel from './components/Wheel/Wheel';
import Overlay from './components/Overlay/Overlay';
import Toast from './components/Toast/Toast';
import ActionSheet from './components/ActionSheet/ActionSheet';
import ActionPopover from './components/ActionPopover/ActionPopover';
import PullPicker from './components/PullPicker/PullPicker';
import PopoverPicker from './components/PopoverPicker/PopoverPicker';
import Menu from './components/Menu/Menu';
import Drawer from './components/Drawer/Drawer';
import ModalIndicator from './components/ModalIndicator/ModalIndicator';
import TeaNavigator from './components/TeaNavigator/TeaNavigator';
import BasePage from './components/BasePage/BasePage';
import NavigationPage from './components/NavigationPage/NavigationPage';
import KeyboardSpace from './components/KeyboardSpace/KeyboardSpace';
var Teaset = {
Theme,
Label,
Button,
Checkbox,
Input,
Select,
Stepper,
SearchInput,
Badge,
Popover,
NavigationBar,
ListRow,
Carousel,
Projector,
SegmentedBar,
SegmentedView,
TabView,
TransformView,
AlbumView,
Wheel,
Overlay,
Toast,
ActionSheet,
ActionPopover,
PullPicker,
PopoverPicker,
Menu,
Drawer,
ModalIndicator,
TeaNavigator,
BasePage,
NavigationPage,
KeyboardSpace,
};
module.exports = Teaset;