Reputation: 1
I'm trying to learn react while building a project. Idk how to include menu in the website. I have tried two approaches to do this, both are not working.
Approach 1 : enter image description here
Error associated with this approach: enter image description here
Approach 2: enter image description here
Error associated with this approach: enter image description here
I'm trying to create a menu like this: enter image description here
Upvotes: 0
Views: 29
Reputation: 224
In first, component name and library module name are same. In second, you can not defined component name.
you can add like:
import { Menu } from 'semantic-ui-react';
const MenuBar = () =>{
return(
//code
);
}
export default MenuBar;
Upvotes: 0