下記のような型を宣言してnpm run storybookをすると、TypeError: (tag.text || "").trim is not a function
というエラーにってしまうのですが、どうすれば解決できるのでしょうか?
type BaseProps = { onClick: () => void; children: React.ReactNode; className: string; isDisabled: boolean; ... // 上記以外の型を定義 } type Prop = BaseProps & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, keyof BaseProps>;
※ Omitの部分を無くすとstorybookが起動できるようになります。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。