> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# MfaCountryCodes

> Describes all the hooks and methods available to customize the Universal Login `mfa-country-codes` screen.

The `mfa-country-codes` screen allows users to browse and select a country code for phone-based MFA enrollment or challenge flows.

<Frame>
  <img style={{maxHeight:"400px"}} src="https://mintlify.s3.us-west-1.amazonaws.com/auth0/docs/images/ja-jp/cdy7uua7fh8z/7hp8LeL9cbS3nbxw8wTuqK/3c862b1c47ae18fb43f22f55ea4d695a/Screenshot_2025-02-19_at_13.23.44.png" alt="MFACountryCodes" />
</Frame>

## Import

Each screen has its own set of hooks and methods. The SDK supports **partial import** and **root import** for each screen.

* Using partial import allows you to include only the code you need for your specific use case.
* Using root import allows you to load all screens from a single bundle, which is useful when you want a unified build to handle all possible screens.

```jsx Import Example theme={null}
// root import
import { useMfaCountryCodes } from '@auth0/auth0-acul-react';

// partial import
import {
  useMfaCountryCodes,
  // Context hooks
  useUser,
  useTenant,
  useBranding,
  useClient,
  useOrganization,
  usePrompt,
  useScreen,
  useTransaction,
  useUntrustedData,
  // Common hooks
  useCurrentScreen,
  useAuth0Themes,
  useErrors,
  // Utility hooks
  useChangeLanguage,
  // Methods
  goBack,
  selectCountryCode,
} from "@auth0/auth0-acul-react/mfa-country-codes";

function MfaCountryCodesScreen() {
  const { selectCountryCode } = useMfaCountryCodes();
  return (
    <button onClick={() => selectCountryCode({ country_code: 'US', phone_prefix: '+1' })}>
      Select +1 (US)
    </button>
  );
}
```

## Context Hooks

Screen-scoped hooks that provide read-only access to Auth0 context data on the `mfa-country-codes` screen. Import them from `@auth0/auth0-acul-react/mfa-country-codes`.

<ParamField body="useBranding" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/BrandingMembers">BrandingMembers</a></span>}>
  This hook provides branding configurations, such as logo, colors, and theme settings displayed on the `mfa-country-codes` screen.

  ```jsx Example theme={null}
  import { useBranding } from '@auth0/auth0-acul-react/mfa-country-codes';
  function CustomTheme() {
    const branding = useBranding();
  }
  ```
</ParamField>

<ParamField body="useClient" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/ClientMembers">ClientMembers</a></span>}>
  This hook provides client-related configurations, such as `id`, `name`, and `logoUrl`, for the `mfa-country-codes` screen.

  ```jsx Example theme={null}
  import { useClient } from '@auth0/auth0-acul-react/mfa-country-codes';
  function AppInfo() {
    const client = useClient();
  }
  ```
</ParamField>

<ParamField body="useOrganization" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/OrganizationMembers">OrganizationMembers</a></span>}>
  This hook provides information about the user's Organization if the MFA flow is Organization scoped. Returns `null` when no Organization context is present.

  ```jsx Example theme={null}
  import { useOrganization } from '@auth0/auth0-acul-react/mfa-country-codes';
  function OrgSelector() {
    const organization = useOrganization();
    if (!organization) {
      return <p>No organization context</p>;
    }
  }
  ```
</ParamField>

<ParamField body="usePrompt" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/PromptMembers">PromptMembers</a></span>}>
  This hook contains data about the current prompt in the authentication flow.

  ```jsx Example theme={null}
  import { usePrompt } from '@auth0/auth0-acul-react/mfa-country-codes';
  function FlowInfo() {
    const prompt = usePrompt();
  }
  ```
</ParamField>

<ParamField body="useScreen" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/ScreenMembersOnMfaCountryCodes">ScreenMembersOnMfaCountryCodes</a></span>}>
  This hook contains details specific to the `mfa-country-codes` screen, including the list of available country codes and current screen context.

  ```jsx Example theme={null}
  import { useScreen } from '@auth0/auth0-acul-react/mfa-country-codes';
  function ScreenDebug() {
    const screen = useScreen();
  }
  ```
</ParamField>

<ParamField body="useTenant" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/TenantMembers">TenantMembers</a></span>}>
  This hook contains data related to the tenant, such as `id` and associated metadata.

  ```jsx Example theme={null}
  import { useTenant } from '@auth0/auth0-acul-react/mfa-country-codes';
  function TenantInfo() {
    const tenant = useTenant();
  }
  ```
</ParamField>

<ParamField body="useTransaction" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/TransactionMembers">TransactionMembers</a></span>}>
  This hook provides transaction-specific data for the `mfa-country-codes` screen, such as the current MFA flow state.

  ```jsx Example theme={null}
  import { useTransaction } from '@auth0/auth0-acul-react/mfa-country-codes';
  function TransactionInfo() {
    const transaction = useTransaction();
  }
  ```
</ParamField>

<ParamField body="useUntrustedData" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/UntrustedDataMembers">UntrustedDataMembers</a></span>}>
  This hook handles untrusted data passed to the screen, such as prefilled values from URL parameters.

  ```jsx Example theme={null}
  import { useUntrustedData } from '@auth0/auth0-acul-react/mfa-country-codes';
  function PrefilledForm() {
    const untrustedData = useUntrustedData();
  }
  ```
</ParamField>

<ParamField body="useUser" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/UserMembers">UserMembers</a></span>}>
  This hook provides details of the active user, including `username`, `email`, and available authentication methods.

  ```jsx Example theme={null}
  import { useUser } from '@auth0/auth0-acul-react/mfa-country-codes';
  function UserProfile() {
    const user = useUser();
  }
  ```
</ParamField>

<ParamField body="useMfaCountryCodes" type={<a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/MfaCountryCodesMembers">MfaCountryCodesMembers</a>}>
  This hook returns all methods and context available on the `mfa-country-codes` screen.
</ParamField>

## Methods

<ParamField body="goBack" type="Promise<void>">
  This method navigates back to the previous screen in the MFA flow.

  ```jsx Example theme={null}
  import { useMfaCountryCodes } from '@auth0/auth0-acul-react/mfa-country-codes';

  function BackButton() {
    const { goBack } = useMfaCountryCodes();
    return (
      <button onClick={() => goBack()}>
        Back
      </button>
    );
  }
  ```
</ParamField>

<ParamField body="selectCountryCode" type="Promise<void>">
  This method confirms the selected country code and returns the user to the enrollment or challenge screen.

  ```jsx Example theme={null}
  import { useMfaCountryCodes } from '@auth0/auth0-acul-react/mfa-country-codes';

  function CountryCodePicker() {
    const { selectCountryCode } = useMfaCountryCodes();
    return (
      <button onClick={() => selectCountryCode({ country_code: 'US', phone_prefix: '+1' })}>
        Select +1 (US)
      </button>
    );
  }
  ```

  **Method Parameters**

  <Expandable title="Parameters">
    <ParamField body="options">
      [SelectCountryCodeOptions](/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/SelectCountryCodeOptions).
    </ParamField>

    <ParamField body="country_code" type="string" required>
      The country code (e.g. `"US"`, `"GB"`).
    </ParamField>

    <ParamField body="phone_prefix" type="string" required>
      The phone prefix (e.g. `"+1"`, `"+44"`).
    </ParamField>
  </Expandable>
</ParamField>

## Common/Utility Hooks

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useAuth0Themes">useAuth0Themes</a>} type="Hooks">
  This hook gets the current theme options with flattened configuration from branding context.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useChangeLanguage">useChangeLanguage</a>} type="Hooks">
  This hook returns a function for changing the display language on the current ACUL screen.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useCurrentScreen">useCurrentScreen</a>} type="Hooks">
  This hook gets the current screen context and state.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useErrors">useErrors</a>} type="Hooks">
  This hook reads and manages server, client, and developer errors on the screen.
</ParamField>
