16 lines
506 B
TypeScript
16 lines
506 B
TypeScript
import Settings from '@/components/Settings'
|
|
import SecondaryPageLayout from '@/layouts/SecondaryPageLayout'
|
|
import { forwardRef } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
const SettingsPage = forwardRef(({ index }: { index?: number }, ref) => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<SecondaryPageLayout ref={ref} index={index} title={t('Settings')}>
|
|
<Settings />
|
|
</SecondaryPageLayout>
|
|
)
|
|
})
|
|
SettingsPage.displayName = 'SettingsPage'
|
|
export default SettingsPage
|