'use client'; import { FC } from 'react'; export const VideoFrame: FC<{ url: string }> = (props) => { const { url } = props; return ; };