1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-25 16:39:02 +02:00

wip: resource progress

This commit is contained in:
Arik Chakma
2025-05-21 23:09:31 +06:00
parent 845c869d8d
commit 4e53d1bf28
2 changed files with 50 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ import { RoadmapAIChatCard } from './RoadmapAIChatCard';
import { UserProgressList } from './UserProgressList';
import { UserProgressActionList } from './UserProgressActionList';
import { RoadmapTopicList } from './RoadmapTopicList';
import { ShareResourceLink } from './ShareResourceLink';
export type RoamdapAIChatHistoryType = {
role: AllowedAIChatRole;
@@ -153,6 +154,9 @@ export function RoadmapAIChat(props: RoadmapAIChatProps) {
'roadmap-topics': (options) => {
return <RoadmapTopicList roadmapId={roadmapId} {...options} />;
},
'resource-progress-link': () => {
return <ShareResourceLink roadmapId={roadmapId} />;
},
};
}, [roadmapId]);