webapp/src/pages/profile/profileSubscriptions.page.tsx

16 lines
420 B
TypeScript
Raw Normal View History

2023-02-17 09:21:02 +00:00
import { PageLayout } from '../../components/_shared/PageLayout'
import { AuthGuard } from '../../components/AuthGuard'
import { ProfileSubscriptions } from '../../components/Views/ProfileSubscriptions'
2023-02-10 01:19:20 +00:00
export const ProfileSubscriptionsPage = () => {
return (
2023-02-17 09:21:02 +00:00
<PageLayout>
<AuthGuard>
<ProfileSubscriptions />
</AuthGuard>
2023-02-17 09:21:02 +00:00
</PageLayout>
)
}
2023-02-17 09:21:02 +00:00
export const Page = ProfileSubscriptionsPage