mirror of
https://github.com/complexcaresolutions/dak.c2s.git
synced 2026-03-17 17:13:42 +00:00
Implement the four core frontend pages for the DAK Zweitmeinungs-Portal: - DashboardPage: KPI cards, weekly stacked bar chart, fallgruppen donut chart, year selector - CasesPage: filterable/searchable paginated table with detail slide-out and inline ICD editing - ImportPage: CSV upload with preview/confirm, ICD Excel upload, import history log - IcdPage: reuses CasesPage with pending-icd-only filter Also adds shadcn/ui components (table, select, tabs, skeleton, scroll-area) and new TypeScript types for import log and ICD import responses. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
276 B
TypeScript
13 lines
276 B
TypeScript
import { cn } from "@/lib/utils"
|
|
|
|
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
|
|
return (
|
|
<div
|
|
data-slot="skeleton"
|
|
className={cn("bg-accent animate-pulse rounded-md", className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export { Skeleton }
|