Skip to content

Instantly share code, notes, and snippets.

@biancadragomir
Created October 8, 2021 17:18
Show Gist options
  • Save biancadragomir/3a16c4019f8539decd7a5f276c2295fe to your computer and use it in GitHub Desktop.
Save biancadragomir/3a16c4019f8539decd7a5f276c2295fe to your computer and use it in GitHub Desktop.
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