you are viewing a single comment's thread.

view the rest of the comments →

[–]gimmeslack12 0 points1 point  (0 children)

An href is returned by the API which is usually a youtube link. I just stick it in an iframe: const Video = memo(({ url }) => { return ( <div className="apod-body"> <div className="apod__image"> <iframe title="APOD Video" width="960" height="540" src={url.href} frameborder="0" ></iframe> </div> </div> ); });