From 29ea8df4259921f1789e0e6d584767fc5f54b284 Mon Sep 17 00:00:00 2001 From: Cláudio Date: Fri, 5 Feb 2021 19:36:09 -0300 Subject: Commit for #541 --- webui/src/layout/Header.tsx | 50 --------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 webui/src/layout/Header.tsx (limited to 'webui/src/layout/Header.tsx') diff --git a/webui/src/layout/Header.tsx b/webui/src/layout/Header.tsx deleted file mode 100644 index b0fae3cc..00000000 --- a/webui/src/layout/Header.tsx +++ /dev/null @@ -1,50 +0,0 @@ -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; -- cgit