2
0
Files
bot/apps/builder/pages/account.tsx

14 lines
386 B
TypeScript
Raw Normal View History

2021-12-27 15:59:32 +01:00
import { Stack } from '@chakra-ui/react'
import { AccountHeader } from 'components/account/AccountHeader'
import { Seo } from 'components/Seo'
import { AccountContent } from 'layouts/account/AccountContent'
2022-01-23 08:23:05 +01:00
const AccountSubscriptionPage = () => (
<Stack>
<Seo title="My account" />
<AccountHeader />
<AccountContent />
</Stack>
)
2021-12-27 15:59:32 +01:00
export default AccountSubscriptionPage