No Description

NotificationScreen.js 343B

123456789101112
  1. import * as React from 'react';
  2. import { Button, View } from 'react-native';
  3. function NotificationsScreen({ navigation }) {
  4. return (
  5. <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
  6. <Button onPress={() => navigation.goBack()} title="Go back home" />
  7. </View>
  8. );
  9. }
  10. export default NotificationsScreen