-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlib.js
More file actions
26 lines (24 loc) · 964 Bytes
/
lib.js
File metadata and controls
26 lines (24 loc) · 964 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
import * as components from './src/scripts/index';
import styles from './src/styles/utils';
export const Button = components.Button;
export const List = components.List;
export const Media = components.Media;
export const Loading = components.Loading;
export const Hr = components.Hr;
export const Toast = components.Toast;
export const StatusBar = components.StatusBar;
export const TipBar = components.TipBar;
export const Confirm = components.Confirm;
export const Alert = components.Alert;
export const SegmentedControl = components.SegmentedControl;
export const Tabs = components.Tabs;
export const DatePickerIOS = components.DatePickerIOS;
export const DateBar = components.DateBar;
export const H1 = components.H1;
export const H2 = components.H2;
export const H3 = components.H3;
export const H4 = components.H4;
export const H5 = components.H5;
export const H6 = components.H6;
export const LoadingView = components.LoadingView;
export default styles;