UNPKG

next

Version:

The React Framework

11 lines (9 loc) 372 B
"use client"; import { createContext } from "react"; export const SearchParamsContext = createContext(null); export const PathnameContext = createContext(null); if (process.env.NODE_ENV !== "production") { SearchParamsContext.displayName = "SearchParamsContext"; PathnameContext.displayName = "PathnameContext"; } //# sourceMappingURL=hooks-client-context.js.map