From 829998568f4e8a44971a9fe7e46a76ec9316cc81 Mon Sep 17 00:00:00 2001 From: Kumar Damani Date: Mon, 18 Feb 2019 16:09:52 -0700 Subject: fixed folder structure --- mobile/screens/LinksScreen.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 mobile/screens/LinksScreen.js (limited to 'mobile/screens/LinksScreen.js') diff --git a/mobile/screens/LinksScreen.js b/mobile/screens/LinksScreen.js new file mode 100644 index 0000000..7bb4a62 --- /dev/null +++ b/mobile/screens/LinksScreen.js @@ -0,0 +1,27 @@ +import React from 'react'; +import { ScrollView, StyleSheet } from 'react-native'; +import { ExpoLinksView } from '@expo/samples'; + +export default class LinksScreen extends React.Component { + static navigationOptions = { + title: 'Links', + }; + + render() { + return ( + + {/* Go ahead and delete ExpoLinksView and replace it with your + * content, we just wanted to provide you with some helpful links */} + + + ); + } +} + +const styles = StyleSheet.create({ + container: { + flex: 1, + paddingTop: 15, + backgroundColor: '#fff', + }, +}); -- cgit v1.2.3