On this pageFunctions
Navigation
/**
* Opens the given href in a new browsing context (tab or window, at the browser's discretion).
* The current page is unchanged. Subject to popup blockers when not called from a user-gesture handler.
*/
(href: string): Effect<void>/** Pushes a new URL to browser history and triggers Foldkit's URL change handling. */
(url: string): Effect<void>/** Replaces the current URL in browser history and triggers Foldkit's URL change handling. */
(url: string): Effect<void>