引用:HTML Standard 日本語訳 https://momdo.github.io/html/interaction.html#the-hidden-attribute Safari以外の主要ブラウザでは利用可能な仕様[1]ですが、まだReact@19現在ではサポートが追いついておらず型エラーが発生し、Reactでは値のない論理属性として扱われてしまいます。 jsx<div hidden="until-found" /> 暫定的にhooksで解決するuse-hidden-until-found.tsimport { useEffect } from 'react'; export const useHiddenUntilFound = () => { useEffect(() => { document.querySelectorAll('[data-hidden-until-fo

