// TreasureRow.tsx // Displays a single treasure with discovered checkbox and text. import type { Treasure } from "@/lib/types"; /** * Renders a treasure row with a discovered checkbox and treasure text. * Handles updating the discovered state and discoveredIn relationship. */ export const TreasurePrintRow = ({ treasure }: { treasure: Treasure }) => { return (