I\'m trying to add a React map component to my project but run into an error. I\'m using Fullstack React\'s blog post as a reference. I tracked down where the error gets thr
This occured when I accidentally named my render function incorrectly:
render
import React from 'react'; export class MyComponent extends React.Component { noCalledRender() { return ( Hello, world! ); } }
My instance of this error was simply caused because my class did not have a proper render method.