aboutsummaryrefslogtreecommitdiff
path: root/src/screens/main/Upload.tsx
blob: fc089aec8cda33ca86712a030858b39afbf7867e (plain)
1
2
3
4
5
6
7
8
9
10
11
import React from 'react';
import {ComingSoon} from '../../components';
/**
 * Upload Screen to allow users to upload posts to Tagg
 */

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

export default Upload;