IConfigurationViewSection

Configuration section definition

Definition

interface IConfigurationViewSection {
    /** Section identifier */
    id: string

    /** Section title shown in sidebar and header */
    title: string;

    /** Keywords for search filtering (title is searched by default) */
    keywords?: string[];

    /** Section content rendered in main area */
    content: React.ReactNode;

    /** Hides the header */
    hideHeader?: boolean
}

Usage

Last updated