著者:
    作成:2026-01-21最終更新:2026-01-21

    IntlayerProvider コンポーネントのドキュメント

    IntlayerProvider コンポーネントは、React アプリケーションにおける Intlayer の主要なプロバイダーです。すべての子要素に Intlayer コンテキストを提供します。

    使用例

    tsx
    import { IntlayerProvider } from "react-intlayer";
    
    const App = ({ children }) => <IntlayerProvider>{children}</IntlayerProvider>;
    

    プロパティ

    PropType説明
    localeLocalesValues初期的に使用するロケール。
    defaultLocaleLocalesValuesフォールバックとして使用するデフォルトのロケール。
    setLocale(locale: LocalesValues) => voidロケールを設定するカスタム関数。
    disableEditorbooleanエディタを無効化するかどうか。
    isCookieEnabledbooleanロケールを保存するためにクッキーを有効にするかどうか。