mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 04:00:09 +00:00
18 lines
546 B
JavaScript
18 lines
546 B
JavaScript
"use client";
|
|
"use client";
|
|
|
|
// src/providers/translation-provider-client.tsx
|
|
import { createContext } from "react";
|
|
import { jsx } from "react/jsx-runtime";
|
|
var TranslationContext = createContext(null);
|
|
function TranslationProviderClient(props) {
|
|
return /* @__PURE__ */ jsx(TranslationContext.Provider, { value: {
|
|
quetzalKeys: props.quetzalKeys,
|
|
quetzalLocale: props.quetzalLocale
|
|
}, children: props.children });
|
|
}
|
|
export {
|
|
TranslationContext,
|
|
TranslationProviderClient
|
|
};
|
|
//# sourceMappingURL=translation-provider-client.js.map
|