export interface VideoProps { title: string; src: string; } export function Video(props: VideoProps) { return ( ); } export default Video;