Files
notesnook/apps/mobile/loading.js
thewisefarmerr 02d7592fc3 initial commit
2019-11-15 01:17:59 +05:00

25 lines
364 B
JavaScript
Executable File

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>
}
};