"use client"; //=========================================== // THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY UNLESS YOU ALSO EDIT THE CORRESPONDING FILE IN packages/template //=========================================== import React from "react"; import { createGlobal } from "@hexclave/shared/dist/utils/globals"; import type { StackClientApp } from "../lib/hexclave-app/apps/interfaces/client-app"; type HexclaveContextValue = { app: StackClientApp, }; export const HexclaveContext = createGlobal>( "HexclaveContext", () => React.createContext(null), ); HexclaveContext.displayName ??= "HexclaveContext";