webapp/src/routes/profile/subs.tsx

19 lines
520 B
TypeScript
Raw Normal View History

import { AuthGuard } from '../../components/AuthGuard'
import { ProfileSubscriptions } from '../../components/Views/ProfileSubscriptions'
2024-02-04 11:25:21 +00:00
import { PageLayout } from '../../components/_shared/PageLayout'
import { useLocalize } from '../../context/localize'
2023-02-10 01:19:20 +00:00
export const ProfileSubscriptionsPage = () => {
const { t } = useLocalize()
return (
<PageLayout title={t('Profile')}>
<AuthGuard>
<ProfileSubscriptions />
</AuthGuard>
2023-02-17 09:21:02 +00:00
</PageLayout>
)
}
2024-07-03 21:25:03 +00:00
export default ProfileSubscriptionsPage