mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
19 lines
304 B
JavaScript
19 lines
304 B
JavaScript
|
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 };
|