You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 5, 2022. It is now read-only.
I found I need to override the props in Navbar and can't use with something like
active={toggle}
as in Navbar.Burger, here's my workaround:<Navbar.Menu shazzam={toggle}>
and in your Navbar.js (components) I added props for display,
export const NavbarMenu = styled.nav
display: ${props => props.shazzam ? "block" : "none"};
Tried them with default next.js settings.
The text was updated successfully, but these errors were encountered: