NathanDeveloping
Results
3
comments of
NathanDeveloping
The same problem is occuring to me. I'm using interface and inheritance as a workaround. It might be cool to be able to distinguish props & extended props too.
@kennycrosby, with your example : ``` export interface ButtonProps extends React.HTMLAttributes { // extra button props } export const Button: React.FunctionComponent = ({ // props decomposed }) => { ......
It seems that component files named with hypen cannot be parsed too