Skip to main content

navigate

The navigate function in the xAtom framework provides the ability to navigate to different pages within your web application.

Getting Started​

To begin using the navigate function, follow these steps:

Example
import { navigate } from "@xatom/core";

// Navigate to a specific path
navigate("/dashboard");

// Navigate to a path and replace the current page in the browsing history
navigate({
to: "/sign-in",
type: "replace",
});

// Reload the current page
navigate({
type: "reload",
});

Syntax​

navigate(arg: string | { to: string; type: "replace" } | { type: "reload" }): void

Parameter​

NameTypeDescription
argstring or { to: string; type: "replace" } or { type: "reload" }Navigation configuration