MonoCloud Authentication SDK
    Preparing search index...

    Interface ProcessCallbackProps

    Props for the <ProcessCallback /> component.

    interface ProcessCallbackProps {
        children?: ReactNode;
        error?: ReactNode | ((error: Error) => ReactNode);
        loading?: ReactNode;
    }
    Index

    Properties

    children?: ReactNode

    Content rendered after the callback has been processed successfully.

    null
    
    error?: ReactNode | ((error: Error) => ReactNode)

    Content rendered when callback processing fails.

    loading?: ReactNode

    Content rendered while the callback is being processed.

    null