mirror of
https://github.com/dyzulk/trustlab-docs.git
synced 2026-01-26 13:32:08 +07:00
11 lines
214 B
Plaintext
11 lines
214 B
Plaintext
import { useEffect } from 'react'
|
|
import { useRouter } from 'next/router'
|
|
|
|
export default function Root() {
|
|
const router = useRouter()
|
|
useEffect(() => {
|
|
router.replace('/en')
|
|
}, [router])
|
|
return null
|
|
}
|