112 B
6 lines
Blame
1
import
{
redirect
}
from
"
next/navigation
"
;
2
3
export
default
function
StatusPage
()
{
4
redirect
(
"
/dashboard
"
);
5
}
6