about summary refs log tree commit diff
path: root/src/screens/Notifications.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-06-09 16:32:03 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-06-09 16:32:03 -0500
commitfc3b2952bb59b80665ebb53ffb3377f647ccdbd3 (patch)
tree37477c0803459ff55f0e26ae27c8231305e6856a /src/screens/Notifications.tsx
parentd6942bffab68ce80d5cb26b42710dd9276f62ded (diff)
downloadvoidsky-fc3b2952bb59b80665ebb53ffb3377f647ccdbd3.tar.zst
Add routes and core views
Diffstat (limited to 'src/screens/Notifications.tsx')
-rw-r--r--src/screens/Notifications.tsx21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/screens/Notifications.tsx b/src/screens/Notifications.tsx
new file mode 100644
index 000000000..8ffb5bb87
--- /dev/null
+++ b/src/screens/Notifications.tsx
@@ -0,0 +1,21 @@
+import React from 'react'
+import {SafeAreaView, ScrollView, Text, Button, View} from 'react-native'
+import type {PrimaryTabScreenProps} from '../routes/types'
+
+export const Notifications = ({
+  navigation,
+}: PrimaryTabScreenProps<'Notifications'>) => {
+  return (
+    <SafeAreaView>
+      <ScrollView contentInsetAdjustmentBehavior="automatic">
+        <View>
+          <Text>Hello world</Text>
+          <Button
+            title="Go to Jane's profile"
+            onPress={() => navigation.navigate('Profile', {name: 'Jane'})}
+          />
+        </View>
+      </ScrollView>
+    </SafeAreaView>
+  )
+}