+8








d186daa131
Signed-off-by: -LAN- <[email protected]> Co-authored-by: Hash Brown <[email protected]> Co-authored-by: crazywoola <[email protected]> Co-authored-by: GareArc <[email protected]> Co-authored-by: Byron.wang <[email protected]> Co-authored-by: Joel <[email protected]> Co-authored-by: -LAN- <[email protected]> Co-authored-by: Garfield Dai <[email protected]> Co-authored-by: KVOJJJin <[email protected]> Co-authored-by: Alexi.F <[email protected]> Co-authored-by: Xiyuan Chen <[email protected]> Co-authored-by: kautsar_masuara <[email protected]> Co-authored-by: achmad-kautsar <[email protected]> Co-authored-by: Xin Zhang <[email protected]> Co-authored-by: kelvintsim <[email protected]> Co-authored-by: zxhlyh <[email protected]> Co-authored-by: Zixuan Cheng <[email protected]>
19 lines
510 B
TypeScript
19 lines
510 B
TypeScript
'use client'
|
|
import type { FC, PropsWithChildren } from 'react'
|
|
import React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import ExploreClient from '@/app/components/explore'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
|
|
const ExploreLayout: FC<PropsWithChildren> = ({ children }) => {
|
|
const { t } = useTranslation()
|
|
useDocumentTitle(t('common.menus.explore'))
|
|
return (
|
|
<ExploreClient>
|
|
{children}
|
|
</ExploreClient>
|
|
)
|
|
}
|
|
|
|
export default React.memo(ExploreLayout)
|