2017-05-24 22:11:37 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { View, Text } from 'react-native';
|
|
|
|
import { connect } from 'react-redux'
|
|
|
|
import { Log } from 'src/log.js'
|
|
|
|
import { Folder } from 'src/models/folder.js'
|
|
|
|
import { ScreenHeader } from 'src/components/screen-header.js';
|
|
|
|
import { NoteFolderService } from 'src/services/note-folder-service.js';
|
|
|
|
|
|
|
|
class LoadingScreenComponent extends React.Component {
|
|
|
|
|
2017-06-06 22:01:43 +02:00
|
|
|
static navigationOptions(options) {
|
2017-05-24 22:11:37 +02:00
|
|
|
return { header: null };
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View style={{flex: 1}}>
|
|
|
|
<Text>Loading...</Text>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const LoadingScreen = connect(
|
|
|
|
(state) => {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
)(LoadingScreenComponent)
|
|
|
|
|
|
|
|
export { LoadingScreen };
|