Files

3 lines
86 B
TypeScript

export function navigateTo(url: string) {
window.history.pushState("", "", url);
}