mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-30 20:50:02 +00:00
Initial commit of eigent-main
This commit is contained in:
commit
723df5a03e
1144 changed files with 103478 additions and 0 deletions
18
package/@stackframe/react/dist/esm/providers/translation-provider-client.js
vendored
Normal file
18
package/@stackframe/react/dist/esm/providers/translation-provider-client.js
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
"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
|
||||
Loading…
Add table
Add a link
Reference in a new issue