blob: e8dfdd966f895df69854cb324e0fd5f1750aae2d [file] [log] [blame]
Adrià Vilanova Martínezac4a6442022-05-15 19:05:13 +02001// Copyright 2021 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5import React from 'react';
6import AppBar from '@material-ui/core/AppBar';
7import Toolbar from '@material-ui/core/Toolbar';
8import Typography from '@material-ui/core/Typography'
9
10
11
12export default function Header() {
13 return (
14 <>
15 <AppBar sx={{bgcolor: "white"}}>
16 <Toolbar>
17 <img src='/static/images/chromium.svg' width='=40' height='40'/>
18 <Typography variant="h5" component="div" color="black"> Bugs</Typography>
19 </Toolbar>
20 </AppBar>
21 <Toolbar />
22 </>
23 );
24
25
26}