mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 15:09:33 +01:00
25 lines
364 B
JavaScript
25 lines
364 B
JavaScript
|
|
|
||
|
|
|
||
|
|
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>
|
||
|
|
}
|
||
|
|
};
|