mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 19:57:52 +01:00
25 lines
364 B
JavaScript
Executable File
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>
|
|
}
|
|
}; |