Reorganize navigation and module structure based on new requirements. Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
"use client"
|
|
|
|
import { useRouter } from "next/navigation"
|
|
import { useEffect } from "react"
|
|
|
|
export default function ValueModelPage() {
|
|
const router = useRouter()
|
|
useEffect(() => {
|
|
router.replace("/value-model/models")
|
|
}, [router])
|
|
return null
|
|
}
|