Currently PF3 stories that use addWithInfo just error out after #2895. We should fix these to use the supported @storybook/addon-info API that looks like this:
storiesOf('Component', module)
.add('simple info',
withInfo(`
description or documentation about my component, supports markdown
~~~js
<Button>Click Here</Button>
~~~
`)(() =>
<Component>Click the "?" mark at top-right to view the info.</Component>
)
)Reactions are currently unavailable
Currently PF3 stories that use addWithInfo just error out after #2895. We should fix these to use the supported @storybook/addon-info API that looks like this: