1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/ReactNativeClient/lib/components/screens/loading.js
2017-07-05 22:29:00 +01:00

30 lines
607 B
JavaScript

import React, { Component } from 'react';
import { View, Text } from 'react-native';
import { connect } from 'react-redux'
import { Log } from 'lib/log.js'
import { Folder } from 'lib/models/folder.js'
import { ScreenHeader } from 'lib/components/screen-header.js';
class LoadingScreenComponent extends React.Component {
static navigationOptions(options) {
return { header: null };
}
render() {
return (
<View style={{flex: 1}}>
<Text>Loading...</Text>
</View>
);
}
}
const LoadingScreen = connect(
(state) => {
return {};
}
)(LoadingScreenComponent)
export { LoadingScreen };