Skip to content

Instantly share code, notes, and snippets.

@RusAlex
Forked from jmarceli/README.md
Last active January 27, 2016 06:38
Show Gist options
  • Select an option

  • Save RusAlex/b6b33eb5f2e32fc6a31d to your computer and use it in GitHub Desktop.

Select an option

Save RusAlex/b6b33eb5f2e32fc6a31d to your computer and use it in GitHub Desktop.
React errors explained

You will get one of these:

Uncaught (in promise) TypeError: Cannot read property 'toUpperCase' of undefined(…)

ReactCompositeComponent.js:870 Uncaught TypeError: Cannot read property 'displayName' of undefined

if you try to:

import { ComponentName } from 'ComponentName.jsx'

instead of:

import ComponentName from 'ComponentName.jsx'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment