// @flow import * as React from 'react'; import {Container, Content, Text, Button, Icon} from 'native-base'; import CustomHeader from '../components/CustomHeader'; import i18n from "i18n-js"; import NotificationsManager from '../utils/NotificationsManager' type Props = { navigation: Object, } export default class HomeScreen extends React.Component { render() { const nav = this.props.navigation; return ( ); } }