import type { CrosswordResponse } from "@/lib/types"; type ClueListProps = { crossword: CrosswordResponse; labels: { across: string; down: string; }; }; export function ClueList({ crossword, labels }: ClueListProps) { return (

{labels.across}

{labels.down}

); }