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.

react-firebaseuiのEmail認証でユーザー登録させない方法

Last updated at Posted at 2022-07-11

modバージョン

    "react-firebaseui": "^6.0.0",
    "react": "^17.0.2",

サンプル

Configのoptionを作ってあげればいいけど、型情報が取れなかったのでanyを使用する

import StyledFirebaseAuth from "react-firebaseui/StyledFirebaseAuth";

const disableSignUp: any = {
  status: true,
};

const option: any = {
  provider: provider.providerId,
  disableSignUp: disableSignUp,
};

const uiConfig: firebaseui.auth.Config = {
  signInFlow: "popup",
function.
  signInSuccessUrl: "/home",
  signInOptions: [option],
};

export const Login: VFC = memo(() => {
  return (
    <div>
      <StyledFirebaseAuth uiConfig={uiConfig} firebaseAuth={auth} />
    </div>
  );
});

型情報がどうしても取れなかった

EmailSignInOptionとDisableSignUpConfigがexportされてなくて参照できなかった…
いいやり方あれば教えてください。

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?