amati/src/app/page.tsx
2024-03-22 16:53:48 +07:00

12 lines
168 B
TypeScript

import { redirect } from 'next/navigation'
import React from 'react'
export default function page() {
redirect("/dashboard")
return (
<div>page</div>
)
}