tmdb-explorer icon indicating copy to clipboard operation
tmdb-explorer copied to clipboard

Help needed. Can't insert iframe.

Open animemandir opened this issue 2 years ago • 0 comments

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. image

  • 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.

animemandir avatar May 14 '22 13:05 animemandir