import { VideoBlock } from "./VideoBlock"; export function TextVideoBlock({ content, onWatchProgress, resumePercent, antiSkipEnabled }) { const vidLeft = content.video_position === "left"; return (
{vidLeft && }
Empty text

", }} /> {!vidLeft && }
); }