9 lines
207 B
TypeScript
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>;
|
|
};
|