feat: add my benefits page

This commit is contained in:
Christel Westerberg
2024-04-08 09:27:51 +02:00
parent 0a3292a354
commit 8ca4767806
10 changed files with 180 additions and 2 deletions
+7
View File
@@ -16,3 +16,10 @@ export type BlocksTypename = keyof typeof BlocksTypenameEnum
export type Typename<T, K> = T & {
__typename: K
}
export enum MyPageBlocksEnum {
MyPageBlocksNextLevelBlock = "MyPageBlocksNextLevelBlock",
MyPageBlocksPersonalBenefitsBlock = "MyPageBlocksPersonalBenefitsBlock",
MyPageBlocksShortcuts = "MyPageBlocksShortcuts",
}
export type MyPageBlocksTypename = keyof typeof MyPageBlocksEnum