interface ServicePillProps { name: string; status: string; } export default function ServicePill({ name, status }: ServicePillProps) { const active = status === "active"; return (
{name} {status}
); }