blob: 258218217f9b8a88f60e14dffdf79aaa37dd0169 [file] [log] [blame]
Adrià Vilanova Martínezf19ea432024-01-23 20:20:52 +01001// Copyright 2021 The Chromium Authors
Adrià Vilanova Martínezac4a6442022-05-15 19:05:13 +02002// 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
Adrià Vilanova Martínezf19ea432024-01-23 20:20:52 +010026}