aws Amplify Cognito + React에서 withAuthenticator 스타일링이 반영되지 않는 경우의 조치
4043 단어 withAuthenticatoramplifyReactAWS
주제
Cognito + React에 대한 정보를 찾으면 withAuthenticator는 'aws-amplify-react'에서 가져온 정보가 거의 없었습니다.
App.jsimport Amplify from 'aws-amplify';
import awsconfig from './aws-exports';
import { withAuthenticator } from 'aws-amplify-react';
Amplify.configure(awsconfig);
function App() {
return (
...
);
}
export default withAuthenticator(App);
하지만 이대로 로그인 화면을 보면
이렇게 스타일링이 반영되지 않는 것이 됩니다.
대처법
여기 공식 문서에서와 같이 '@aws-amplify/ui-react'에서 가져옵니다.
yarn add @aws-amplify/ui-react
App.jsimport Amplify from 'aws-amplify';
import awsconfig from './aws-exports';
// '@aws-amplify/ui-react'に変更
import { withAuthenticator } from "@aws-amplify/ui-react";
Amplify.configure(awsconfig);
function App() {
return (
...
);
}
export default withAuthenticator(App);
이제 표시됩니다.
UI Components가 새 버전이 되었기 때문에 @aws-amplify/ui-<framework>
를 사용하도록합시다.
링크
Amplify Framework announces new, rearchitected UI Component and modular JavaScript libraries
Reference
이 문제에 관하여(aws Amplify Cognito + React에서 withAuthenticator 스타일링이 반영되지 않는 경우의 조치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ruko_zss/items/262b1c7b9c24e1f76f0d
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import Amplify from 'aws-amplify';
import awsconfig from './aws-exports';
import { withAuthenticator } from 'aws-amplify-react';
Amplify.configure(awsconfig);
function App() {
return (
...
);
}
export default withAuthenticator(App);
여기 공식 문서에서와 같이 '@aws-amplify/ui-react'에서 가져옵니다.
yarn add @aws-amplify/ui-react
App.js
import Amplify from 'aws-amplify';
import awsconfig from './aws-exports';
// '@aws-amplify/ui-react'に変更
import { withAuthenticator } from "@aws-amplify/ui-react";
Amplify.configure(awsconfig);
function App() {
return (
...
);
}
export default withAuthenticator(App);
이제 표시됩니다.
UI Components가 새 버전이 되었기 때문에
@aws-amplify/ui-<framework>
를 사용하도록합시다.링크
Amplify Framework announces new, rearchitected UI Component and modular JavaScript libraries
Reference
이 문제에 관하여(aws Amplify Cognito + React에서 withAuthenticator 스타일링이 반영되지 않는 경우의 조치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ruko_zss/items/262b1c7b9c24e1f76f0d
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(aws Amplify Cognito + React에서 withAuthenticator 스타일링이 반영되지 않는 경우의 조치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ruko_zss/items/262b1c7b9c24e1f76f0d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)