Files
notesnook/apps/mobile/loading.js

25 lines
364 B
JavaScript
Raw Normal View History

2019-11-15 01:17:59 +05:00
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>
}
};