diff --git a/rsconcept/frontend/src/components/ui/LinkTopic.tsx b/rsconcept/frontend/src/components/ui/LinkTopic.tsx index bb2c3195..7b044dd9 100644 --- a/rsconcept/frontend/src/components/ui/LinkTopic.tsx +++ b/rsconcept/frontend/src/components/ui/LinkTopic.tsx @@ -4,10 +4,15 @@ import { HelpTopic } from '@/models/miscellaneous'; import TextURL from './TextURL'; interface TextURLProps { + /** Text to display. */ text: string; + /** Topic to link to. */ topic: HelpTopic; } +/** + * Displays a link to a help topic. + */ function LinkTopic({ text, topic }: TextURLProps) { return ; }