wuyiqun0718's picture
update
159e7fa
raw
history blame
147 Bytes
import { redirect } from 'next/navigation';
export interface PageProps {}
export default async function Page({}: PageProps) {
redirect('/');
}