Components

<LocaleSelector>

API Reference for the <LocaleSelector> component

Overview

The <LocaleSelector> component is used to select the user's locale. It is a client side component that provides a dropdown to select the locale.

Reference

Returns

A component that allows the user to select their locale.


Examples

Basic Usage

"use client";
import { LocaleSelector } from 'gt-next/client';
 
export default function MyComponent() {
    return (
        <LocaleSelector />
    );
}

Notes

  • The <LocaleSelector> component allows you to select a different locale for your app.
  • The <LocaleSelector> component is not available in the server component.

Next Steps

On this page