UNPKG

rwsdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

15 lines (14 loc) 353 B
import "./types/ssr"; export * from "../lib/streams/consumeEventStream"; export const navigate = () => { /* stub */ }; export function useNavigationPending(_options = {}) { return { currentUrl: new URL("http://localhost/"), pending: null, }; } export function NavigationPending({ children }) { return children ?? null; }