1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【React】Material-UI: The `fade` color utility was renamed to `alpha` to better describe its functionality.の対処法

Posted at

症状

ReactでSPA開発をしている際に、以下のwarnがでました。 翻訳すると、「Material-UI:機能をわかりやすく説明するために、 `fade`カラーユーティリティの名前が` alpha`に変更されました。 '@ material-ui / core / styles'`から `import {alpha}を使用する必要があります」でした。
error
Material-UI: The `fade` color utility was renamed to `alpha` to better describe its functionality.

You should use `import { alpha } from '@material-ui/core/styles'`

解決策

パッケージの次バージョンをインストールすることで解決しました。 特にimportする必要はなかったですが、@mui/labは見つからなくなっていたので再度追加したりはしました。
solution
npm install @material-table/core@next

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?