webapp/src/routes/settings/subs.tsx
Untone 6bd919f16b
Some checks failed
deploy / test (push) Failing after 1m9s
deploy / Update templates on Mailgun (push) Has been skipped
views-refactored
2024-10-02 23:12:14 +03:00

17 lines
488 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 default () => {
const { t } = useLocalize()
return (
<PageLayout withPadding={true} title={`${t('Discours')} :: ${t('Subscriptions')}`}>
<AuthGuard>
<ProfileSubscriptions />
</AuthGuard>
</PageLayout>
)
}