'use client' import { Regulation } from '../_hooks/useComplianceHub' export function RegulationsTable({ regulations, onRefresh, }: { regulations: Regulation[] onRefresh: () => void }) { return (

Verordnungen & Standards ({regulations.length})

{regulations.slice(0, 15).map((reg) => ( ))}
Code Name Typ Anforderungen
{reg.code}

{reg.name}

{reg.regulation_type === 'eu_regulation' ? 'EU-VO' : reg.regulation_type === 'eu_directive' ? 'EU-RL' : reg.regulation_type === 'bsi_standard' ? 'BSI' : reg.regulation_type === 'de_law' ? 'DE' : reg.regulation_type} {reg.requirement_count}
) }