import React from 'react'; import {Text} from 'react-native-animatable'; import {StyleSheet} from 'react-native'; import {GradientBackground} from '../../components'; /** * Upload Screen to allow users to upload posts to Tagg */ const Upload: React.FC = () => { return ( Upload pics ⬆ ); }; const styles = StyleSheet.create({ text: { justifyContent: 'center', backgroundColor: 'transparent', }, }); export default Upload;