Section
A Section organizes sidebar content by grouping related tabs together with optional disclosure.

Summary
Properties
| Property | Type | Description |
|---|---|---|
Title |
string? |
The displayed section title. |
Disclosure |
boolean? |
Whether the section's content should be hideable. Defaults to true. |
Expanded |
boolean? |
Whether the section should be expanded by default. Defaults to true. |
View all inherited from BaseComponent
View all inherited from TextButton
Methods
View all inherited from TextButton
Events
View all inherited from TextButton
Types
type SectionProperties = TextButton & {
Title: string?,
Disclosure: boolean?,
Expanded: boolean?,
}
type Section = BaseComponent & Components & SectionProperties