// Pinned text-editor pane. Always present in the workspace; not closable. "use client"; import { TextCanvas } from "../../text-canvas/TextCanvas"; import { PaneFrame } from "../PaneFrame"; import type { FixtureData } from "../../../lib/fixtures/aristotle"; interface TextCanvasPaneProps { data: FixtureData; projectId: string; } export function TextCanvasPane({ data, projectId }: TextCanvasPaneProps) { return (
); }