tmdb-explorer
tmdb-explorer copied to clipboard
Help needed. Can't insert iframe.
First of all, I am really sorry but the entire structure is very hard to understand so I am having some trouble.
What I want to do:
- Add an iframe above the movie details section ~
return (
IFRAME
<Introduction
backgroundImageSrc={movie.backdrop_path}
imageSrc={movie.poster_path}
imageAlt={movie.title}
title={
<Box>
-
The iframe should appear here right above the movie details.
-
The code for iframe is something like - the tmdb id for the movie would be inserted in the src.
<AspectRatio aspectRatio={16 / 9}>
<iframe
title="Watch movie and free download"
src={`https://www.2embed.ru/embed/tmdb/movie?id=${tmdb_id}`}
frameBorder="0"
allowFullScreen
/>
Would really appreciate some code spoon-feeding.