We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@cristianoc Thanks for your great work on getting the "Create interface file" feature to work for React components, too! 👍
I just tested it with the VSIX from the lastest master build and found that components memoized with React.memo do not work correctly yet.
React.memo
For example,
@react.component let make = (~someValue as _: bool) => React.null let make = React.memo(make)
results in
let make: React.component<{"someValue": bool}>
instead of
@react.component let make: (~someValue: bool) => React.element
The text was updated successfully, but these errors were encountered:
ed39859
Thanks! Done in master.
Sorry, something went wrong.
No branches or pull requests
@cristianoc Thanks for your great work on getting the "Create interface file" feature to work for React components, too! 👍
I just tested it with the VSIX from the lastest master build and found that components memoized with
React.memo
do not work correctly yet.For example,
results in
instead of
The text was updated successfully, but these errors were encountered: