1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-17 18:44:45 +02:00
joplin/ReactNativeClient/lib/components/base-screen.js
2017-07-21 22:40:02 +01:00

20 lines
384 B
JavaScript

import React, { Component } from 'react';
import { StyleSheet } from 'react-native';
import { globalStyle } from 'lib/components/global-style.js';
const styles_ = StyleSheet.create({
screen: {
flex: 1,
backgroundColor: globalStyle.backgroundColor,
},
});
class BaseScreenComponent extends React.Component {
styles() {
return styles_;
}
}
export { BaseScreenComponent };