Created
October 8, 2021 17:18
-
-
Save biancadragomir/3a16c4019f8539decd7a5f276c2295fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { AppBar, Grid, Hidden, Toolbar } from '@material-ui/core'; | |
// ... | |
const Header = () => { | |
// ... | |
return ( | |
<AppBar position="static"> | |
<Toolbar disableGutters> | |
<Hidden mdDown> | |
<NavigationButtons /> | |
</Hidden> | |
</Toolbar> | |
</AppBar> | |
); | |
}; | |
export default Header; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment