Function useOutputPanelInternal

Allow interaction with the OutputPanel component. The OutputPanel is mainly used as an example of the Panel component. It is used in storybooks as a debug/info panel. Not recommended to use for production.

  • Returns {
        add: (id: string, group: OutputPanelGroup) => void;
        has: (id: string) => boolean;
        remove: (id: string) => void;
        removeAll: () => void;
        update: (
            id: string,
            value: string | number,
            details?: null | Record<string, string | number>,
        ) => void;
    }