MonoCloud Authentication SDK
    Preparing search index...
    • <SignIn> renders a button that starts the sign-in flow when clicked.

      Parameters

      Returns Element

      A button that triggers sign-in on click.

      "use client";

      import { SignIn } from "@monocloud/auth-react";

      export default function Home() {
      return <SignIn>Sign In</SignIn>;
      }
      "use client";

      import { SignIn } from "@monocloud/auth-react";

      export default function Home() {
      return (
      <SignIn authenticatorHint="google">
      Sign in with Google
      </SignIn>
      );
      }