webapp/src/pages/profile/profileSubscriptions.page.tsx
2024-02-04 14:25:21 +03:00

19 lines
525 B
TypeScript

import { AuthGuard } from '../../components/AuthGuard'
import { ProfileSubscriptions } from '../../components/Views/ProfileSubscriptions'
import { PageLayout } from '../../components/_shared/PageLayout'
import { useLocalize } from '../../context/localize'
export const ProfileSubscriptionsPage = () => {
const { t } = useLocalize()
return (
<PageLayout title={t('Profile')}>
<AuthGuard>
<ProfileSubscriptions />
</AuthGuard>
</PageLayout>
)
}
export const Page = ProfileSubscriptionsPage