feat: align Tracking component props with CMS data

This commit is contained in:
Arvid Norlin
2024-02-13 15:18:44 +01:00
parent 5ccb6166c3
commit 5bd162da10
2 changed files with 36 additions and 14 deletions

View File

@@ -0,0 +1,19 @@
export type TrackingProps = {
pageData: {
pageId: string
createdDate: string
publishedDate: string
pageName: string
pageType: string
}
}
export type TrackingData = {
pathName: string
queryString: string
pageId: string
pageName: string
pageType: string
publishedDate: string
createdDate: string
}