Skip to main content
The Bottom Panel Tabs API allows extensions to add custom tabs to the bottom panel of the ComfyUI interface. This is useful for adding features like logs, debugging tools, or custom panels.

Basic Usage

Tab Configuration

Each tab requires an id, title, and type, along with a render function:
The render function receives a DOM element where you should insert your tab’s content.

Interactive Elements

You can add interactive elements like buttons:

Using React Components

You can mount React components in bottom panel tabs:

Standalone Registration

You can also register tabs outside of registerExtension: