'use client'; import { VersionStatus, VERSION_STATUS_BG, VERSION_STATUS_DOT } from '@/lib/version-status'; interface Props { name: string; status: VersionStatus; } export function VersionChip({ name, status }: Props) { return ( {name} ); }