import type { AppVersion } from "@/lib/types"; type VersionBadgeProps = { version: AppVersion; }; export function VersionBadge({ version }: VersionBadgeProps) { return (
{version.version}
); }