wix-incubator / vscode-glean

The extension provides refactoring tools for your React codebase

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow to not use FC<Type>

danielo515 opened this issue · comments

Hello again.
Thanks for this time saving extension.
I was wondering if it will be possible to configure it to not use the FC<Type> type utility. It is not recommended and not all codebases follow that convention. It is taking me a lot of time to manually change those to the (props: Type) => that we use.

Thanks in advance

Hello, as a workaround you could use VFC<Type> or VoidFunctionComponent<Type>.

Cheers