-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
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
Bypass createClass #40
Comments
Hi! React remove createClass in version 16. Do you have plans on this ticket? There is |
We'll simply wire things up under the hood by looking at how es6 classes work. cc @IwanKaramazow. It might only be a few lines change. |
Would it be worth using |
I'm new to reasonml 👋 and would like to get this done. What should we do with the additional dependency (create-react-class)?
|
imo it should be a regular dependency |
createClass will be moved out of React core. We don't currently compile to es6 classes (the spec isn't even finalized), so we can take this occasion to also drop our internal usage of createClass, and wire things up into React ourselves. Page initialization cost should go down a bit.
The text was updated successfully, but these errors were encountered: