react-proptypes-to-typescript icon indicating copy to clipboard operation
react-proptypes-to-typescript copied to clipboard

feature request: transfrom Component.defaultProps to static member

Open zhangciwu opened this issue 4 years ago • 1 comments

transform:

Component.defaultProps = {
    a:1,
}

To:

class Component: ...{
    static defaultProps = { a:1 },
    ...
}

zhangciwu avatar Apr 01 '20 07:04 zhangciwu