import React, { Component } from 'react'; import { StyleSheet, ScrollView, Text, TouchableOpacity, View, } from 'react-native'; const Story = ({navigation}) => ( React Screen. Story ID: {JSON.stringify(navigation.state)} { navigation.navigate('Profile', {id: '9876'}); }}> Navigate to native profile { navigation.navigate('Settings'); }}> Navigate to react settings { navigation.navigate('RandomLink'); }}> Navigate to unimpemented page ); const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', }, welcome: { fontSize: 20, textAlign: 'center', margin: 10, marginTop: 80, }, link: { textAlign: 'center', color: '#0A5FFF', fontSize: 16, marginVertical: 10, }, }); module.exports = Story;