Skip to content

Instantly share code, notes, and snippets.

@HigoRibeiro
Created May 30, 2018 13:05
Show Gist options
  • Save HigoRibeiro/516c2701d1c3fa9fb3975bfa628b4a64 to your computer and use it in GitHub Desktop.
Save HigoRibeiro/516c2701d1c3fa9fb3975bfa628b4a64 to your computer and use it in GitHub Desktop.
// src/Page2.js
import React from 'react';
import { View, Button, Text } from 'react-native';
const Page2 = () => (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Text>About</Text>
</View>
);
Page2.navigationOptions = {
title: 'About',
}
export default Page2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment