in src/components/Redirect.js [3:15]
export default function Redirect({children, url}) {
if (global?.window?.location?.href) {
global.window.location.href = url;
}
return (
<span>
{children}
or click <a href={url}>here</a>
</span>
);
}