import React from 'react'; import {Text} from 'react-native-animatable'; import {StyleSheet} from 'react-native'; import {GradientBackground} from '../../components'; /** * Navigation Screen for displaying other users' * actions on the logged in user's posts */ const Notifications: React.FC = () => { return ( Notifications will go here 🔔 ); }; const styles = StyleSheet.create({ text: { justifyContent: 'center', backgroundColor: 'transparent', }, }); export default Notifications;