Uncaught Error: The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + ’em’}} when using JSX.

Reactでタイトルのエラーが発生 styleを{{}}で囲うで対処しました 参考記事 React inline style – style prop expects a mapping from style …

bundle.js:2 Uncaught ReferenceError: regeneratorRuntime is not defined

reactにaxiosを入れたらタイトルのエラー発生 で行けました 参考記事 async/awaitを使用して、”regeneratorRuntime is not defined “エラーが出た …

configuration.devtool should match pattern “^(inline-|hidden-|eval-)?(nosources-)?(cheap-(module-)?)?source-map$”

flaskにwebpackの乗せてreactを走らせようとしたところエラーが発生 結論 -d オプションを削除すると動く 参考記事 webpack v5 devtool should match pattern

Stripe elementでregisterElement not defined が出る場合の対処法

少し修正したらタイトルのエラーが発生 調べてみたところ、どうやらstripeのバグらしく、registerElementのコードをソースから引っ張ってきて追加することで対処できるとのことです。 一部変数にダブりがあったの …

Reactのselectでselectedを指定する方法

Modalで閉じるたびにselectが解除されてしまったいたので、調べたところこんな感じで実装することで常にselected状態を維持できるようです optionState にvalue=”A” のA とか B が入るよ …