I found it hard to create navbar with menus on Material UI. I've read it's AppBar documentation. But, it seems they doesn't provide that feature.
1) Material UI AppBar
2) React Bootstrap Navbar
How to create navbar menu on Material UI like React Bootstrap does ?
An AppBar is more or less just a container for other components. It doesn't do much on its own. What I think you want is to add a menu to you AppBar (or, more specifically, to the Toolbar inside of the AppBar):
https://material-ui.com/components/menus/
You can also add regular Buttons:
https://material-ui.com/components/buttons/
A simplified example: