{ "version": 3, "sources": ["../../javascript/components/TranslationContext.tsx"], "sourcesContent": ["import React from \"react\"\n\ntype Translations = { [key: string]: string }\n\nconst TranslationContext = React.createContext<Translations>({})\n\nconst TranslationProvider = TranslationContext.Provider\nconst TranslationConsumer = TranslationContext.Consumer\n\n/* I wouldn't normally name something a single letter variable, but this\n * matches the I18N.t helper.\n */\nconst T: React.FC<{ tKey: string }> = ({ tKey }) => (\n <TranslationConsumer>\n {(translations) => translations[tKey]}\n </TranslationConsumer>\n)\n\nexport {\n TranslationContext as default,\n TranslationProvider,\n TranslationConsumer,\n Translations,\n T\n}\n"], "mappings": "kHAAA,IAAAA,EAAkB,SAIZC,EAAqB,EAAAC,QAAM,cAA4B,CAAC,CAAC,EAEzDC,EAAsBF,EAAmB,SACzCG,EAAsBH,EAAmB,SAKzCI,EAAgC,CAAC,CAAE,KAAAC,CAAK,IAC5C,EAAAJ,QAAA,cAACE,EAAA,KACGG,GAAiBA,EAAaD,EAClC", "names": ["import_react", "TranslationContext", "React", "TranslationProvider", "TranslationConsumer", "T", "tKey", "translations"] }