diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-21 14:09:33 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-21 14:09:33 -0700 |
commit | 04b71b8813db48a2ee5f57e617d26fcd5c465621 (patch) | |
tree | 973f1c0b5daf9c52d7e2400e2d6d047bc391a4b7 /src/screens | |
parent | 5b57d5c82a0d8b30a58fd66acd79f083e3019cfc (diff) |
Move export to last line
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/moments/TagSelectionScreen.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/moments/TagSelectionScreen.tsx b/src/screens/moments/TagSelectionScreen.tsx index d68447f8..7770731c 100644 --- a/src/screens/moments/TagSelectionScreen.tsx +++ b/src/screens/moments/TagSelectionScreen.tsx @@ -144,8 +144,6 @@ const TagSelectionScreen: React.FC<TagSelectionScreenProps> = ({route}) => { ); }; -export default TagSelectionScreen; - const styles = StyleSheet.create({ safeAreaView: { backgroundColor: 'white', @@ -179,3 +177,5 @@ const styles = StyleSheet.create({ marginBottom: '2%', }, }); + +export default TagSelectionScreen; |