3 lines
86 B
TypeScript
3 lines
86 B
TypeScript
export function navigateTo(url: string) {
|
|
window.history.pushState("", "", url);
|
|
} |