1 export const openLink = (url: string) => { 2 // opens the link in a new tab 3 window.setTimeout(() => window.open(url, "_blank")); 4 }; 5