UNPKG

@equinor/mad-core

Version:

Core library for the Mobile App Delivery team

5 lines (4 loc) 349 B
import React from "react"; import { ExpoAuthSession } from "@equinor/mad-auth"; export type LoginScreenProps = Partial<Pick<ExpoAuthSession.LoginButtonProps, "onAuthenticationSuccessful" | "onAuthenticationFailed">>; export declare const LoginScreen: ({ onAuthenticationSuccessful, onAuthenticationFailed, }: LoginScreenProps) => React.JSX.Element;