| 1 | import type { ComponentProps } from "react"; |
| 2 | import { Transcript } from "../components/Transcript"; |
| 3 | import type { TranscriptTestClock } from "./transcript-test-clock"; |
| 4 | |
| 5 | export function TranscriptTestSurface({ |
| 6 | viewportHeight, |
| 7 | rowHeight, |
| 8 | kernelClock, |
| 9 | ...props |
| 10 | }: ComponentProps<typeof Transcript> & { viewportHeight: number; rowHeight: number; kernelClock?: TranscriptTestClock }) { |
| 11 | void viewportHeight; |
| 12 | void rowHeight; |
| 13 | void kernelClock; |
| 14 | return <Transcript {...props} />; |
| 15 | } |
| 16 |