import React from 'react'; import { Link } from 'react-router-dom'; import AppBar from '@material-ui/core/AppBar'; import Toolbar from '@material-ui/core/Toolbar'; import { makeStyles } from '@material-ui/core/styles'; import CurrentIdentity from './CurrentIdentity'; const useStyles = makeStyles(theme => ({ offset: { ...theme.mixins.toolbar, }, filler: { flexGrow: 1, }, appTitle: { ...theme.typography.h6, color: 'white', textDecoration: 'none', display: 'flex', alignItems: 'center', }, logo: { height: '42px', marginRight: theme.spacing(2), }, })); function Header() { const classes = useStyles(); return ( <> git-bug git-bug
); } export default Header;