Reactjs - Super Expression Must Either Be Null Or A Function, Not Undefined
I've been following along a course on udemy, but there's an error that keeps showing up no matter what I do: Here's the components code: import React from 'react'; import { Compon
Solution 1:
I had the same problem. The bug is due to 'react-sparklines' . Downgrade the version by:
npm i --save react-sparklines@1.6.0
.
Post a Comment for "Reactjs - Super Expression Must Either Be Null Or A Function, Not Undefined"