0
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.

'AmplifySignOut' is not exported from '@aws-amplify/ui-react' エラー対応

Posted at

AWSでReactアプリケーションを構築するチュートリアルをしているときにエラーが出ててこずったのでメモしておきます。

aws-amplifyの認証機能を使ってreactプロジェクトを動かしたところ、以下のエラーが発生。

export 'AmplifySignOut' is not exported from '@aws-amplify/ui-react'...

いろいろ調べたところ、AmplifySignOutはui-react1.2.5以下でしか提供されていないらしく、package.jsonを書き換えて対応しました。

package.json
"dependencies":{
    "@aws-amplify/ui-react": "^1.2.5",
    ...
}

Amazonにはチュートリアルを書き換えて欲しいところです。。。

<<参考>>

0
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
0
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?