Section of the settings

0.5.0

interface SettingSection {
    content: (() => ReactNode);
    description: string;
    id:
        | "Participants"
        | "Profile"
        | "General"
        | "Presenter";
    title: string;
    icon?: IconType;
}

Properties

content: (() => ReactNode)

Content of the section

The content of the section to be displayed

description: string

Description of the section

id:
    | "Participants"
    | "Profile"
    | "General"
    | "Presenter"

Unique ID of the section

It should be unique and in lowercase

"General"

0.8.0 - Renamed IDs to PascalCase

title: string

Title of the section

icon?: IconType

Icon of the section

Shown in the sidebar