-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
31 lines (28 loc) · 1.18 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
import FillToAspectRatio from "./react-native-aufit-camera" ;
import StyleUtils from "./react-native-autofit-size" ;
import { RNAlert,Alert } from "./components/Alert" ;
import { RNPicker,Picker } from "./components/Picker" ;
import { RNToast,Toast } from "./components/Toast";
import { RNLoading,Loading } from "./components/Loading";
import Dialog,{ RNDialog } from "./components";
import { storage,memory } from "./cache" ;
import parseUrl,{ setAxiosConfig,axios } from "./http" ;
export { storage,memory } from "./cache" ;
export parseUrl,{ setAxiosConfig,axios } from "./http" ;
export Dialog from "./components" ;
export { RNAlert,Alert } from "./components/Alert" ;
export { RNPicker,Picker } from "./components/Picker" ;
export { RNToast,Toast } from "./components/Toast";
export { RNLoading,Loading } from "./components/Loading";
export { RNDialog } from "./components" ;
export FillToAspectRatio from "./react-native-aufit-camera" ;
export StyleUtils from "./react-native-autofit-size" ;
export default {
RNAlert, Alert,
RNPicker, Picker,
RNToast,Toast,
RNLoading,Loading,
Dialog,RNDialog,
FillToAspectRatio,StyleUtils,
storage,memory,parseUrl,setAxiosConfig,axios
}