safak / youtube

5.04k stars 5.47k forks source link

./src/pages/Home.jsx Attempted import error: '../components/Categories' does not contain a default export (imported as 'Categories'). #79

Open ChaymaaBA opened 2 years ago

ChaymaaBA commented 2 years ago

./src/pages/Home.jsx Attempted import error: '../components/Categories' does not contain a default export (imported as 'Categories').

AliNaderii commented 2 years ago

In order to import a component like this import Component from 'somewhere' first, you need to export it like this export default Component

but if you export your component like this export const Component = () => {} you can use this syntax for importing it ( with curly bracket ) import { Component } from 'somewhere' you can search for 'named export' for more info