Home does not contain an export named Home

The error is telling you that you are importing incorrectly. Here’s the code you have to add:

import { Home } from './layouts/Home';

This is incorrect because you’re exporting as the default export, not as a named export. Check this line:

export default Home;

You’re exporting as default, not as a name. Thus, import Home like this:

import Home from './layouts/Home';

Notice there are no curly brackets. Further reading on import and export.

Leave a Comment

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)