에러 노트

[React] <iframe> elements must have a unique title property

2021bong 2021. 12. 24. 17:01

<iframe> elements must have a unique title property

<iframe> 엘리먼트는 유니크한 제목 속성을 가져야만 한다


경고가 뜨면 그냥 <iframe>에 title 속성 하나 넣어주면 됨

    <iframe
      type="text/html"
      width="100%"
      height="500px"
      title="youtube video player" // 이거
      src={`https://www.youtube.com/embed/${video.id}`}
      frameborder="0"
      allowfullscreen
    ></iframe>
728x90