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
You can paste the code below in the playground and see that description and tsType are lost.
interfaceProps{/** The name to greet */name: string}/** * Hello world component */constMyComponent=({name ='world'}: Props)=>{return<div/>;
}/** * Hello world Readonly */constMyReadonlyPropsComponent=({name ='world'}: Readonly<Props>)=>{return<div/>;
}
I noticed this behaviour while digging through an issue that appeared after the latest Storybook's major update, which uses this package by default to extract information from the components.
The text was updated successfully, but these errors were encountered:
You can paste the code below in the playground and see that
description
andtsType
are lost.I noticed this behaviour while digging through an issue that appeared after the latest Storybook's major update, which uses this package by default to extract information from the components.
The text was updated successfully, but these errors were encountered: