import * as React from "react"; interface IPlayheadProps { frame: number; offset: number; } export class Playhead extends React.Component{ constructor(props: IPlayheadProps) { super(props); } render() { return (
{this.props.frame}
) } }