<SignIn> renders a button that starts the sign-in flow when clicked.
<SignIn>
Sign-in options.
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>;} Copy
"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> );} Copy
"use client";import { SignIn } from "@monocloud/auth-react";export default function Home() { return ( <SignIn authenticatorHint="google"> Sign in with Google </SignIn> );}
<SignIn>renders a button that starts the sign-in flow when clicked.