import React from 'react'; import { InfoBar } from '../infoBar/infoBar.jsx'; export interface Props { text: string; url: string; } const VideoLink = (props) => { const { text, url } = props; return ( <> {text}  Watch here ); }; export default VideoLink;