const handleRedirect = () => { window.location.href = "https://www.example.com"; }; return ( <div> <button onClick={handleRedirect}>Redirect</button> </div> );