score:0

this has happened to me when i forgot to export one of my components or i imported one of my components incorrectly.

ex:

import homelistpage from './homelistpage'

will fail to import correctly if it is not the default export in the homelistpage file. your homepage is correct. check your other components that you import and make sure they are the default export in their files. you can also import a non-default export with

import { homelistpage } from './homelistpage'

Related Query

More Query from same tag