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/components/common/TaggUserSelectionCell.tsx | |
parent | 5b57d5c82a0d8b30a58fd66acd79f083e3019cfc (diff) |
Move export to last line
Diffstat (limited to 'src/components/common/TaggUserSelectionCell.tsx')
-rw-r--r-- | src/components/common/TaggUserSelectionCell.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/common/TaggUserSelectionCell.tsx b/src/components/common/TaggUserSelectionCell.tsx index 01d965cf..2ea1e4ce 100644 --- a/src/components/common/TaggUserSelectionCell.tsx +++ b/src/components/common/TaggUserSelectionCell.tsx @@ -61,8 +61,6 @@ const TaggUserSelectionCell: React.FC<TaggUserSelectionCellProps> = ({ ); }; -export default TaggUserSelectionCell; - const styles = StyleSheet.create({ container: { marginHorizontal: '3%', @@ -71,3 +69,5 @@ const styles = StyleSheet.create({ justifyContent: 'center', }, }); + +export default TaggUserSelectionCell; |