Sign in
apache
/
cloudberry-site
/
refs/heads/main
/
.
/
src
/
components
/
Redirect.js
blob: 35cce35edf1d1fe94f3dfa71bb197962d3678539 [
file
]
import
React
from
'react'
;
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
>
);
}