-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
37 lines (33 loc) · 825 Bytes
/
App.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
/* Creator : ABDUL BASITH A */
/* Email : ambalavanbasith@gmail.com */
/* github : abdulbasitha */
/* More Info : https://techzia.in */
import React, { Component } from "react";
import Navigation from './navigation';
import {Block} from './components';
// import * as constants from './constants';
import { YellowBox } from 'react-native';
console.disableYellowBox = true;
import {
StyleSheet
} from "react-native";
class PlanetApp extends Component {
state = {
isLoadingComplete:false
}
// handleResourceAsync = async ()=>{
// const cacheImages = Image.map(img =>{
// return Asset.fromModule(image).downloadAsync();
// });
// }
render() {
return (
<Block >
<Navigation />
</Block>
);
}
}
export default PlanetApp;
const styles = StyleSheet.create({
});