mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-09-01 07:07:14 +00:00
perf: add subtitle for each page
This commit is contained in:
@@ -5,6 +5,7 @@ export interface ISidebarChildVO {
|
||||
icon: React.ReactNode;
|
||||
name: string;
|
||||
route: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export class SidebarChildVO {
|
||||
@@ -12,12 +13,14 @@ export class SidebarChildVO {
|
||||
icon: React.ReactNode;
|
||||
name: string;
|
||||
route: string;
|
||||
description: string;
|
||||
|
||||
constructor(props: ISidebarChildVO) {
|
||||
this.id = props.id;
|
||||
this.icon = props.icon;
|
||||
this.name = props.name;
|
||||
this.route = props.route;
|
||||
this.description = props.description;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user