feat(Search): make search placeholder text configurable

This commit is contained in:
Danny Koppenhagen
2021-10-26 19:44:09 +02:00
committed by Bastian
parent c8a3b528b8
commit 1f01f6ccb6
4 changed files with 8 additions and 3 deletions

View File

@@ -32,6 +32,7 @@ export interface Messages {
socialLinks?: SocialLink[];
legalInformationLink?: string;
pageHelp?: PageHelp;
searchPlaceholder?: string;
}
const MessagesContext = createContext<Messages | undefined>(undefined);