-
Notifications
You must be signed in to change notification settings - Fork 197
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
deprecation error due to React.createClass #93
Comments
Is this fixed? It still shows in version 3.3.4. |
@raygerami |
@MichaelDeBoey thanks |
I've tried contacting the dev a couple of times and no response unfortunately |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
React.createClass is being deprecated in React 16.0 and currently shows deprecation warnings in 15.5
Warning: MaskedInput: React.createClass is deprecated and will be removed in version 16. Use plain JavaScript classes instead. If you're not yet ready to migrate, create-react-class is available on npm as a drop-in replacement.
Code needs to be refactored to use
class MaskedInput extends Component
syntax.The text was updated successfully, but these errors were encountered: