Skip to content

routePath

Import

import { routePath } from "dreamkit";

Definition

declare const routePath: (path: string, data?: Record<string, any>) => string;

Examples

Basic usage

import { routePath } from "dreamkit";
export default function Users() {
return <a href={routePath("/users/:id", { id: 1 })}>User 1</a>;
}