Skip to main content
Module

x/ruck/RouteContext.mjs

Ruck is an open source buildless React web application framework for Deno.
Latest
File
// @ts-check
import { createContext } from "react";
/** React context that holds the Ruck app route. */const c = createContext( /** @type {import("./serve.mjs").Route | undefined} */ (undefined),);
c.displayName = "RouteContext";
export default c;