1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-29 19:13:59 +02:00
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 };