import React, { type ReactNode, useState } from 'react'; import type { TranslationDefinition } from '../../hooks/useTranslate'; import { GrapesContext, type GrapesContextType } from './GrapesContext'; export type GrapesProviderProps = { /** * The content of the GrapesProvider */ children: ReactNode; /** * The locale for your application as BCP 47 language tag. * @see {@link https://datatracker.ietf.org/doc/html/rfc4647} * @example "en-US", "de-DE", "fr-FR" */ locale: string; /** * The definition of locales helper to translate default Grapes text */ localesDefinition: TranslationDefinition; /** * The Mapbox Access token for your application. * Required if you want to use a AutocompletePlace component */ mapboxAccessToken?: string; }; export const GrapesProvider = ({ children, localesDefinition, locale, mapboxAccessToken, }: GrapesProviderProps) => { const [inert, setInert] = useState(false); const context: GrapesContextType = { locale, localesDefinition, mapboxAccessToken, setInert, }; return (
{children}
); };