blob: 258218217f9b8a88f60e14dffdf79aaa37dd0169 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import React from 'react';
import AppBar from '@material-ui/core/AppBar';
import Toolbar from '@material-ui/core/Toolbar';
import Typography from '@material-ui/core/Typography'
export default function Header() {
return (
<>
<AppBar sx={{bgcolor: "white"}}>
<Toolbar>
<img src='/static/images/chromium.svg' width='=40' height='40'/>
<Typography variant="h5" component="div" color="black"> Bugs</Typography>
</Toolbar>
</AppBar>
<Toolbar />
</>
);
}