import type { Npc } from "@/lib/types"; /** * Renders an editable npc row */ export const NpcPrintRow = ({ npc }: { npc: Npc }) => { return (

{npc.data.name}

{npc.data.description}

); };