6 lines
107 B
TypeScript
6 lines
107 B
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
export default async function Page() {
|
|
redirect('/home');
|
|
}
|