const goTo = (url) => (location.href = url);
const goTo = (url: string): string => (location.href = url);