feat(PageOverview): make PageOverview title text configurable

This commit is contained in:
Danny Koppenhagen
2021-10-26 19:54:34 +02:00
committed by Bastian
parent 1f01f6ccb6
commit 0e180cc841
4 changed files with 17 additions and 3 deletions

View File

@@ -27,11 +27,16 @@ interface PageHelp {
};
}
interface PageOverview {
title: string;
}
export interface Messages {
footerFootnote?: string;
socialLinks?: SocialLink[];
legalInformationLink?: string;
pageHelp?: PageHelp;
pageOverview?: PageOverview;
searchPlaceholder?: string;
}