File size: 113 Bytes
1e92f2d |
1 2 3 4 5 6 |
import { redirect } from 'next/navigation';
export default function Page(): never {
redirect('/dashboard');
}
|
1e92f2d |
1 2 3 4 5 6 |
import { redirect } from 'next/navigation';
export default function Page(): never {
redirect('/dashboard');
}
|