Ant Design Responsive NavBar
Answer : I was looking at this question in a decision to pick Ant design for a project. Responsive navbar is common scenario, but I was wondering why there is no such thing in Ant Design? Then I searched for issues in the repo and found the Ant Design Mobile as a comment to an issue. They have a separate package for mobile devices. Inside Ant Design Mobile there is separate section for web components. In that section you can find a Menu component which is suitable for mobile devices hamburger icon. Hope this will be helpful for future readers. I was looking for such functionality not long ago as well and in order to make Ant Menu responsive, I have written a simple React Component. This Component accepts Ant Menu markup as a prop and conditionally renders the Menu based on the viewport width, either as is (for desktop), or in a Popover component which will wrap passed menu markup (for mobile). I'm including screenshots of how it may look once the viewport is narrow en...