feat(PageItem): make PageItem back to quadrant overview text configurable

This commit is contained in:
Danny Koppenhagen
2021-10-26 19:58:50 +02:00
committed by Bastian
parent 0e180cc841
commit a509e0a0da
4 changed files with 16 additions and 1 deletions

View File

@@ -31,12 +31,17 @@ interface PageOverview {
title: string;
}
interface PageItem {
quadrantOverview: string;
}
export interface Messages {
footerFootnote?: string;
socialLinks?: SocialLink[];
legalInformationLink?: string;
pageHelp?: PageHelp;
pageOverview?: PageOverview;
pageItem?: PageItem;
searchPlaceholder?: string;
}