コガミツlog

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

Frontend

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>…

実践 TypeScript を読んで新しい知見を得る | Utility Types

TSを雰囲気で使っている部分があるので書籍を読んで新しい知見を得ようという試み。 書籍は実践 TypeScript です。 実践TypeScript作者:吉井 健文マイナビ出版Amazon ※記載コードは書籍を一部省略して書いたり、別途ググって別のコードを記載しています。 ※…