aboutsummaryrefslogtreecommitdiff
path: root/src/screens/main/Notifications.tsx
blob: ca8c41c3b2b9135e97900e2f0d00e6e406f51209 (plain)
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;