React Hooks Link ke situs eksternal

        // Open in the same window
        window.location.href = externalLink;

        // Open in a new window
        window.open(externalLink);
|_Genos_|