aboutsummaryrefslogtreecommitdiff
path: root/src/components/common
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-05-21 14:09:33 -0700
committerShravya Ramesh <shravs1208@gmail.com>2021-05-21 14:09:33 -0700
commit04b71b8813db48a2ee5f57e617d26fcd5c465621 (patch)
tree973f1c0b5daf9c52d7e2400e2d6d047bc391a4b7 /src/components/common
parent5b57d5c82a0d8b30a58fd66acd79f083e3019cfc (diff)
Move export to last line
Diffstat (limited to 'src/components/common')
-rw-r--r--src/components/common/TaggRadioButton.tsx3
-rw-r--r--src/components/common/TaggUserSelectionCell.tsx4
2 files changed, 4 insertions, 3 deletions
diff --git a/src/components/common/TaggRadioButton.tsx b/src/components/common/TaggRadioButton.tsx
index 25d00ec9..495eddae 100644
--- a/src/components/common/TaggRadioButton.tsx
+++ b/src/components/common/TaggRadioButton.tsx
@@ -28,7 +28,6 @@ const TaggRadioButton: React.FC<TaggRadioButtonProps> = ({
);
};
-export default TaggRadioButton;
const styles = StyleSheet.create({
outer: {
width: 20,
@@ -47,3 +46,5 @@ const styles = StyleSheet.create({
borderRadius: 8,
},
});
+
+export default TaggRadioButton;
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;