aboutsummaryrefslogtreecommitdiff
path: root/src/components/common/TaggRadioButton.tsx
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/TaggRadioButton.tsx
parent5b57d5c82a0d8b30a58fd66acd79f083e3019cfc (diff)
Move export to last line
Diffstat (limited to 'src/components/common/TaggRadioButton.tsx')
-rw-r--r--src/components/common/TaggRadioButton.tsx3
1 files changed, 2 insertions, 1 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;