Files
code-editor/shared/navigation.ts
T

3 lines
86 B
TypeScript

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