4 lines
81 B
TypeScript
4 lines
81 B
TypeScript
export function redirectTo(url: string): void {
|
|
window.location.assign(url);
|
|
}
|