You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a pattern we recommended in the past for using storiesOf with ArgsTable etc.
import{storiesOf}from'@storybook/react';import{Button}from'./button';importReactfrom'react';storiesOf('Example/Button',module).add('with text',(args: any)=><Button{...args}/>,{component: Button,// This would tell it what component for auto-generated controls.args: {label: 'With Args'},argTypes: {label: {type: 'string'}}});
This is a pattern we recommended in the past for using
storiesOf
with ArgsTable etc.According to this update, this no longer works in 6.4 https://discord.com/channels/486522875931656193/501692020226654208/912394654572482591
The text was updated successfully, but these errors were encountered: