コガミツlog

福岡在住エンジニアのブログ

React

Radix Dialog に自前コンポーネントを使うと Function components cannot be given refs. が出る

起きていた事象 詳細をちょっと書くと Radix UIを使用してDialogを実装していて、その子コンポーネントに自作コンポーネントを使用していた場合 Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use Rea…

Radix UIでWarning: validateDOMNesting(...): <button> cannot appear as a descendant of <button>.

起きていた事象 Radix UI を使ってUIを作っていて、ある画面でconsoleにwarningが表示されていた。 Warning: validateDOMNesting(...): <button> cannot appear as a descendant of <button>. 言い換えると<button>タグは<button>タグの子孫タグに出来なってことです。 Reactのソースコードに</button></button></button></button>…