import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import ShareExtension from 'rn-extensions-share'; import * as HeaderButton from '../containers/HeaderButton'; import sharedStyles from './Styles'; import I18n from '../i18n'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', padding: 15 }, title: { fontSize: 18, ...sharedStyles.textBold }, content: { fontSize: 14, ...sharedStyles.textRegular, ...sharedStyles.textAlignCenter } }); interface IWithoutServerViewProps { theme: string; } class WithoutServerView extends React.Component { static navigationOptions = () => ({ title: 'Rocket.Chat', headerLeft: () => }); render() { const { theme } = this.props; return ( {I18n.t('Without_Servers')} {I18n.t('You_need_to_access_at_least_one_RocketChat_server_to_share_something')} ); } } export default withTheme(WithoutServerView);