import { jsx as _jsx } from "react/jsx-runtime"; import { createContext } from "react"; export const AccountsContext = createContext(undefined); /** Provides an AccountManager to the component tree */ export function AccountsProvider({ manager, children }) { return _jsx(AccountsContext.Provider, { value: manager, children: children }); }