fix(SidebarNavigation): allow ReactNode for page title

This commit is contained in:
AAGaming
2023-06-18 13:15:18 -04:00
parent 585c3b8348
commit 44d9b90cdc

View File

@@ -3,7 +3,7 @@ import { ReactNode, VFC } from 'react';
import { Module, findModuleChild } from '../webpack';
export interface SidebarNavigationPage {
title: string;
title: ReactNode;
content: ReactNode;
icon?: ReactNode;
visible?: boolean;