NotificationSection.js 322 B

123456789101112131415161718
  1. import { StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. const NotificationSection = props => {
  4. const {
  5. navigation
  6. } = props
  7. return (
  8. <View>
  9. <Text>NotificationSection</Text>
  10. </View>
  11. )
  12. }
  13. export default NotificationSection
  14. const styles = StyleSheet.create({})