feat(SW-368): added link chips component

This commit is contained in:
Erik Tiekstra
2024-09-19 15:16:58 +02:00
parent 6720370c41
commit 4352997322
18 changed files with 290 additions and 41 deletions

View File

@@ -0,0 +1,19 @@
#import "../PageLink/ContentPageLink.graphql"
#import "../PageLink/HotelPageLink.graphql"
#import "../PageLink/LoyaltyPageLink.graphql"
fragment NavigationLinks on ContentPageHeader {
navigation_links {
title
linkConnection {
edges {
node {
__typename
...HotelPageLink
...ContentPageLink
...LoyaltyPageLink
}
}
}
}
}