Files
dm-companion/src/components/documents/scene/ScenePrintRow.tsx

9 lines
207 B
TypeScript

import type { Scene } from "@/lib/types";
/**
* Renders an editable scene row
*/
export const ScenePrintRow = ({ scene }: { scene: Scene }) => {
return <li className="">{scene.data.scene.text}</li>;
};