fix(SidebarNavigation): change title to ReactNode type (#117)

This commit is contained in:
Lukas Senionis
2025-03-29 15:01:51 +02:00
committed by GitHub
parent 716f947710
commit 41d0555d31

View File

@@ -16,7 +16,7 @@ export interface SidebarNavigationPage {
}
export interface SidebarNavigationProps {
title?: string;
title?: ReactNode;
pages: (SidebarNavigationPage | 'separator')[];
showTitle?: boolean;
disableRouteReporting?: boolean;