import {Context, createContext, Dispatch, SetStateAction} from "react"; export type SupportedLocale = 'fr' | 'en'; export interface LangContextProps { lang: SupportedLocale; setLang: Dispatch>; } export const LangContext: Context = createContext({ lang: 'fr', setLang: (): void => { } });