mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-24 07:29:30 +01:00
initial commit
This commit is contained in:
25
apps/mobile/loading.js
Executable file
25
apps/mobile/loading.js
Executable 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>
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user