1234567891011121314 |
- 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({})
|