blob: d91af1f5b80cb817653455995beeab327366495e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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 (
<GradientBackground>
<Text style={styles.text}> Upload pics ⬆ </Text>
</GradientBackground>
);
};
const styles = StyleSheet.create({
text: {
justifyContent: 'center',
backgroundColor: 'transparent',
},
});
export default Upload;
|