1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/ReactNativeClient/lib/components/base-screen.js

19 lines
304 B
JavaScript
Raw Normal View History

2017-07-14 20:49:14 +02:00
import React, { Component } from 'react';
import { StyleSheet } from 'react-native';
const styles_ = StyleSheet.create({
screen: {
flex: 1,
backgroundColor: "#E9E9E9",
},
});
class BaseScreenComponent extends React.Component {
styles() {
return styles_;
}
}
export { BaseScreenComponent };