I have this CodeSandbox
And suddenly I cant click on the Components and I cant remember what I did to deserve this :)
Please advice?
I have this CodeSandbox
And suddenly I cant click on the Components and I cant remember what I did to deserve this :)
Please advice?
The problem here is the
div
element that you defined inline with your Navbar Form: . As you can see from the developer tools, this div is being created the same size and position as your nav, but it's over top of your nav, so no click events make their way to the nav itself.Removing the div fixes it.