diff --git a/apps/app/src/components/Changelog/VersionStatus.tsx b/apps/app/src/components/Changelog/VersionStatus.tsx new file mode 100644 index 0000000..c983db3 --- /dev/null +++ b/apps/app/src/components/Changelog/VersionStatus.tsx @@ -0,0 +1,12 @@ +export const VersionStatus = ({ status }: { status: string }) => { + switch (status) { + case 'draft': + return
+ case 'published': + return + case 'review': + return + default: + return + } +}