Skip to content

withAuthenticator가 Lagacy가 되었다.

Park Sang Shin edited this page Jan 25, 2021 · 2 revisions

Amplify 공식문서

https://docs.amplify.aws/ui/auth/authenticator/q/framework/react#usage-1

문제

AWS AppSync의 공식문서에는 Sign-in,out 관련 기능 구현을

import { withAuthenticator } from 'aws-amplify-react';

를 통해 구현하는 것으로 안내되어 있어서 구현했다.

관련해서 이슈가 있어 공식문서를 뒤지던 중 aws-amplify-react 모듈은 Lagacy가 되었으니 withAuthenticator를 쓰고 싶으면

+ import { withAuthenticator } from '@aws-amplify/ui-react';

이렇게 쓰는데 (Authenticator 가장 아래쪽에 짧게 언급) 그냥 제공하는 HOC를 사용해서 구현하라고 안내되어 있다.

이부분에 대해서 안내되어 있는 방식으로 수정하자.

Clone this wiki locally