webapp/src/components/Article/VideoPlayer.tsx

13 lines
291 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
export default (props: { youtubeId?: string; vimeoId?: string; title?: string }) => {
// TODO: styling
return (
<video
src={
props.vimeoId
? `https://vimeo.com/${props.vimeoId}`
: `https://youtube.com/?watch=${props.youtubeId}`
}
/>
)
}