ReactJs: TypeError: Object(...) is not a function

Hello everyone,
Today I started a a new react app and on one of my components I got the following error:

The code for this component can be found here:
https://gist.github.com/LGmatrix13/d62962ae7d9ca870b0297f213ff4afd5
Any suggestions? Thank you in advance!
Liam

Hi @Liamgrossman, I think it should be

import { validateAll } from 'indicative/validator'

… otherwise you’ll get a module object. BTW to avoid confusion and bugs later on, you should always pass props to super(), even if your component doesn’t take any actual props at this point (c.f. here and here).

Thank you it works now!

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.