storybook-addon-performance
Version:
A storybook addon to help better understand and debug performance for React components
11 lines (8 loc) • 330 B
TypeScript
import { Channel } from '@storybook/channels';
import { PublicInteractionTask, AllowedGroup } from '../types.js';
declare function Panel({ channel, interactions, allowedGroups, }: {
channel: Channel;
interactions: PublicInteractionTask[];
allowedGroups: AllowedGroup[];
}): JSX.Element;
export { Panel as default };