forked from GeekyAnts/NativeBase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
49 lines (47 loc) · 1.43 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
/* @flow */
'use strict';
import Header from './Components/Widgets/Header';
import Footer from './Components/Widgets/Footer';
import Title from './Components/Widgets/Title';
import Container from './Components/Widgets/Container';
import Content from './Components/Widgets/Content';
import Button from './Components/Widgets/Button';
import Text from './Components/Widgets/Text';
import CheckBox from './Components/Widgets/CheckBox';
import Switch from './Components/Widgets/Switch';
import Picker from './Components/Widgets/Picker';
import List from './Components/Widgets/List';
import ListItem from './Components/Widgets/ListItem';
import H1 from './Components/Widgets/H1';
import H2 from './Components/Widgets/H2';
import H3 from './Components/Widgets/H3';
import View from './Components/Widgets/View';
import Input from './Components/Widgets/Input';
import InputGroup from './Components/Widgets/InputGroup';
import Icon from './Components/Widgets/Icon';
import Thumbnail from './Components/Widgets/Thumbnail';
import Card from './Components/Widgets/Card';
import Badge from './Components/Widgets/Badge';
module.exports = {
Header: Header,
Footer: Footer,
Title: Title,
Container: Container,
Content: Content,
Button: Button,
Text: Text,
CheckBox: CheckBox,
Switch: Switch,
Picker: Picker,
List: List,
ListItem: ListItem,
H1: H1,
H2: H2,
H3: H3,
View: View,
InputGroup: InputGroup,
Icon: Icon,
Thumbnail: Thumbnail,
Card: Card,
Badge: Badge
};