Browse Source

Notification Component Initialization

Savio Fernando 1 year ago
parent
commit
f7f86731e5

+ 14 - 0
components/organisms/Cards/NotificationCard.js

@@ -0,0 +1,14 @@
+import { StyleSheet, Text, View } from 'react-native'
+import React from 'react'
+
+const NotificationCard = () => {
+  return (
+    <View>
+      <Text>NotificationCard</Text>
+    </View>
+  )
+}
+
+export default NotificationCard
+
+const styles = StyleSheet.create({})

+ 18 - 0
components/organisms/Sections/NotificationSection.js

@@ -0,0 +1,18 @@
+import { StyleSheet, Text, View } from 'react-native'
+import React from 'react'
+
+const NotificationSection = props => {
+    const {
+        navigation
+    } = props
+  
+    return (
+    <View>
+      <Text>NotificationSection</Text>
+    </View>
+  )
+}
+
+export default NotificationSection
+
+const styles = StyleSheet.create({})