Skip to main content
Module

x/ruck/TransferContext.mjs

Ruck is an open source buildless React web application framework for Deno.
Go to Latest
File
// @ts-check
import { createContext } from "react";
/** * React context to provide the Ruck app request and response context. The * value should only be populated on the server. */const c = createContext( /** @type {import("./serve.mjs").Transfer | undefined} */ (undefined),);
c.displayName = "TransferContext";
export default c;