Storybook / Show state dump in panel

33 views Asked by At

I'd like to show the dump of my react component's state in a storybook panel.

Is there a storybook plugin for this purpose?

export default () => {
  const [a] = useMyHook();

  /** ---> **/ showDumpInStorybookPanel(a); /** <--- **/ 

  return (
    <Comp prop={prop} />
  );
};
0

There are 0 answers