React Js Redirect to Another URL
React Js Redirect to Another URL | External URL:In ReactJS, to redirect to an external URL, you can use the window.location.href
method. Simply set window.location.href
to the desired external URL, and the browser will navigate to that URL
Thanks for your feedback!
Your contributions will help us to improve service.
How can I redirect to another URL in a Reactjs ?
This React.js code snippet uses the useEffect
hook to create a delay of 3 seconds before redirecting to an external URL, 'https://fontawesomeicons.com'. It sets up a timeout using setTimeout
to trigger the redirection. The useEffect
also includes a cleanup function to clear the timeout to prevent memory leaks. The rendered component displays a message indicating the redirection, and the entire process occurs when the component is initially mounted. After 3 seconds, the page automatically redirects to the specified external URL.