bpms_site/.svn/pristine/bc/bc941e7648260a6a9bc8041a3ad434214611e694.svn-base
2025-11-02 16:38:49 +03:30

21 lines
866 B
Plaintext

"use client";
import React from "react";
export var CacheStates;
(function(CacheStates) {
CacheStates["LAZY_INITIALIZED"] = "LAZYINITIALIZED";
CacheStates["DATA_FETCH"] = "DATAFETCH";
CacheStates["READY"] = "READY";
})(CacheStates || (CacheStates = {}));
export const AppRouterContext = React.createContext(null);
export const LayoutRouterContext = React.createContext(null);
export const GlobalLayoutRouterContext = React.createContext(null);
export const TemplateContext = React.createContext(null);
if (process.env.NODE_ENV !== "production") {
AppRouterContext.displayName = "AppRouterContext";
LayoutRouterContext.displayName = "LayoutRouterContext";
GlobalLayoutRouterContext.displayName = "GlobalLayoutRouterContext";
TemplateContext.displayName = "TemplateContext";
}
//# sourceMappingURL=app-router-context.shared-runtime.js.map