React.createElement: type is invalid — expected a string
Most of the time this is due to an incorrect export/import. Common error: // File: LeComponent.js export class LeComponent extends React.Component { … } // File: App.js import LeComponent from ‘./LeComponent’; Possible option: // File: LeComponent.js export default class LeComponent extends React.Component { … } // File: App.js import LeComponent from ‘./LeComponent’; There are a … Read more