Tell us what’s happening:
There a possible bug in Build a Reusable Mega Navbar - Step 2
I’ve tried all the ways to create the asked NavBar component and Im always getting “your code is wrong” error message.
export const NavBar = () => {
return (
<nav className="navbar">
</nav>
);
}
export function NavBar() {
return (
<nav className="navbar">
</nav>
);
}
export function NavBar() {
return <nav className="navbar"></nav>;
}
export function NavBar() {
return <nav className="navbar" />;
}
What am I missing here?
Challenge Information:
Build a Reusable Mega Navbar - Step 2
https://www.freecodecamp.org/learn/full-stack-developer/workshop-reusable-mega-navbar/step-2