6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
|
|
import { redirect } from 'next/navigation'
|
||
|
|
|
||
|
|
export default async function NewPage() {
|
||
|
|
redirect('/')
|
||
|
|
}
|