aboutsummaryrefslogtreecommitdiff
path: root/src/screens/main/Notifications.tsx
diff options
context:
space:
mode:
authorHusam Salhab <47015061+hsalhab@users.noreply.github.com>2020-10-26 18:50:54 -0400
committerGitHub <noreply@github.com>2020-10-26 18:50:54 -0400
commitd48119be38e1dd3f0abc8a4b61c11aa4d0635810 (patch)
tree7d6553fb5d3a725c592955c3d3f8e217f9b9b6a4 /src/screens/main/Notifications.tsx
parent17fbfa29c1b78703b872221e3b590aca3ef5cf7e (diff)
[TMA-280] Add coming soon (#73)
* move async-storage * removed lock files * added lock files to gitignore * added the wrong file to gitignore * added coming soon screens * moved search next to profile * Added the right icons and abstracted cs to ComingSoon.tsx * Update Checkpoint.tsx Co-authored-by: Ashm Walia <ashmwalia@outlook.com>
Diffstat (limited to 'src/screens/main/Notifications.tsx')
-rw-r--r--src/screens/main/Notifications.tsx17
1 files changed, 3 insertions, 14 deletions
diff --git a/src/screens/main/Notifications.tsx b/src/screens/main/Notifications.tsx
index db89d7f9..ca8c41c3 100644
--- a/src/screens/main/Notifications.tsx
+++ b/src/screens/main/Notifications.tsx
@@ -1,7 +1,5 @@
import React from 'react';
-import {Text} from 'react-native-animatable';
-import {StyleSheet} from 'react-native';
-import {GradientBackground} from '../../components';
+import {ComingSoon} from '../../components';
/**
* Navigation Screen for displaying other users'
@@ -9,16 +7,7 @@ import {GradientBackground} from '../../components';
*/
const Notifications: React.FC = () => {
- return (
- <GradientBackground>
- <Text style={styles.text}> Notifications will go here 🔔 </Text>
- </GradientBackground>
- );
+ return <ComingSoon />;
};
-const styles = StyleSheet.create({
- text: {
- justifyContent: 'center',
- backgroundColor: 'transparent',
- },
-});
+
export default Notifications;