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
Is there a point of having createFactory? it just call's createElement
createElement
https://github.com/facebook/react/blob/master/packages/react/src/ReactElement.js#L260-L273
The text was updated successfully, but these errors were encountered:
based on current definition of createFactory in react, we can define it here as: createFactory cls props = createElement cls props mempty
createFactory cls props = createElement cls props mempty
and as it has no advantages we can just remove it.
Sorry, something went wrong.
This came up in #128, and I thought it was removed in #129.
Ah I was looking at old version of this lib :d
No branches or pull requests
Is there a point of having createFactory? it just call's
createElement
https://github.com/facebook/react/blob/master/packages/react/src/ReactElement.js#L260-L273
The text was updated successfully, but these errors were encountered: