'use client' import { useTheme } from '@/lib/ThemeContext' import type { B2BHit } from '@/lib/AlertsB2BContext' import { HitCard } from './HitCard' export function DigestView({ hits, onHitClick }: { hits: B2BHit[] onHitClick: (hit: B2BHit) => void }) { const { isDark } = useTheme() return (
Keine relevanten Hits heute