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;