Skip to content
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

Minified React error #109; #14473

Closed
fuohua opened this issue Dec 20, 2018 · 4 comments
Closed

Minified React error #109; #14473

fuohua opened this issue Dec 20, 2018 · 4 comments

Comments

@fuohua
Copy link

fuohua commented Dec 20, 2018

vendor.js:1 Uncaught Error: Minified React error #109; visit http://facebook.github.io/react/docs/error-decoder.html?invariant=109&args[]=OneCateList for the full message or use the non-minified dev environment for full errors and additional helpful warnings.

@mmarkelov
Copy link
Contributor

@fuohua You need to check render method of your OneCateList component. It is difficult to say what's wrong without your code

@fuohua
Copy link
Author

fuohua commented Dec 20, 2018

Thank you. Find the problem.

@aweary aweary closed this as completed Dec 20, 2018
@dillonstreator
Copy link

@fuohua
Could you please indicate what the issue was with code references for future devs that might come across this?

@Muhammad-Sarfaraz
Copy link

I encountered this error while working with react using cdn. Below code will help you to generate the errors.

<title>Playground</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react-dom.min.js"></script> <script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<div id="main"></div>

<script type="text/babel">
    class App extends React.Component{ render(){
        return ("<h1>Hello Errors</h1> ") } } var mountComponent = document.querySelector('#main'); ReactDOM.render(
    <App/>, mountComponent);
</script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants