"use client"; const TAG_STYLES = { named: { color: '#10b981', bg: '#10b98120' }, descriptive: { color: '#f59e0b', bg: '#f59e0b20' }, vague: { color: '#a78bfa', bg: '#a78bfa20' }, 'non-dataset': { color: '#64748b', bg: '#64748b20' }, }; export default function AnnotationsList({ annotations }) { if (!annotations || annotations.length === 0) return null; return (

Annotations ({annotations.length})

); }