aboutsummaryrefslogtreecommitdiff
path: root/mobile/screens/LinksScreen.js
diff options
context:
space:
mode:
authorKumar Damani <kumar.damani@mail.utoronto.ca>2019-04-23 18:30:30 +0000
committerKumar Damani <kumar.damani@mail.utoronto.ca>2019-04-23 18:30:30 +0000
commit8135fe42bfa36df72c427e8d567aad2182e14372 (patch)
treeee27a6aa55a381ea36d30165ea0e74d8c54422ea /mobile/screens/LinksScreen.js
parentf269caf1eb36c43269d92c89b7f0b0bafb88d572 (diff)
removing some unnecessary files from mobile
Diffstat (limited to 'mobile/screens/LinksScreen.js')
-rw-r--r--mobile/screens/LinksScreen.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/mobile/screens/LinksScreen.js b/mobile/screens/LinksScreen.js
deleted file mode 100644
index 7bb4a62..0000000
--- a/mobile/screens/LinksScreen.js
+++ /dev/null
@@ -1,27 +0,0 @@
-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 (
- <ScrollView style={styles.container}>
- {/* Go ahead and delete ExpoLinksView and replace it with your
- * content, we just wanted to provide you with some helpful links */}
- <ExpoLinksView />
- </ScrollView>
- );
- }
-}
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- paddingTop: 15,
- backgroundColor: '#fff',
- },
-});