aboutsummaryrefslogtreecommitdiff
path: root/src/webex/renderHtml.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/webex/renderHtml.tsx')
-rw-r--r--src/webex/renderHtml.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/webex/renderHtml.tsx b/src/webex/renderHtml.tsx
index d26f726af..792ba2f2c 100644
--- a/src/webex/renderHtml.tsx
+++ b/src/webex/renderHtml.tsx
@@ -61,16 +61,21 @@ export function abbrev(s: string, n: number = 5) {
}
-
interface CollapsibleState {
collapsed: boolean;
}
+
interface CollapsibleProps {
initiallyCollapsed: boolean;
title: string;
}
+
+/**
+ * Component that shows/hides its children when clicking
+ * a heading.
+ */
export class Collapsible extends React.Component<CollapsibleProps, CollapsibleState> {
constructor(props: CollapsibleProps) {
super(props);