initial commit

This commit is contained in:
thewisefarmerr
2019-11-15 01:17:59 +05:00
commit 02d7592fc3
65 changed files with 2926 additions and 0 deletions

25
apps/mobile/loading.js Executable file
View File

@@ -0,0 +1,25 @@
import React, {Component} from 'react';
import {
View,
Text
} from 'react-native';
export default class Loading extends Component {
render() {
return <View
style={{
width:"100%",
height:"100%",
justifyContent:"center",
alignItems:'center'
}}
>
<Text>
Loading Screen
</Text>
</View>
}
};