UNPKG

react-native-template-allmax

Version:

React native template with navigation, redux, redux-saga, eslit, flow, reactotron

21 lines (15 loc) 405 B
// @flow import React, { PureComponent } from 'react'; import { ScrollView } from 'react-native'; import { strings } from '~/global'; import type { StackNavigationOptions } from '~/types'; export class LoginScreen extends PureComponent<{}> { static navigationOptions: StackNavigationOptions = { title: strings.login.headerTitle, }; render() { return ( <ScrollView /> ); } }