1 2 3 4 5 6 7 8 9 10 11 12 13
import React from 'react'; import {ComingSoon} from '../../components'; /** * Navigation Screen for displaying other users' * actions on the logged in user's posts */ const Notifications: React.FC = () => { return <ComingSoon />; }; export default Notifications;