aboutsummaryrefslogtreecommitdiff
path: root/src/screens/main/Home.tsx
blob: 729a7a2223edf3052d0c4c2aa0de57a351ae4685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';
import {ComingSoon} from '../../components';

/**
 * Home Screen for displaying Tagg post suggestions
 * for users to discover and browse
 */

const Home: React.FC = () => {
  return <ComingSoon />;
};

export default Home;