Adrià Vilanova MartÃnez | ac4a644 | 2022-05-15 19:05:13 +0200 | [diff] [blame^] | 1 | // 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 | |
| 5 | import React from 'react'; |
| 6 | import AppBar from '@material-ui/core/AppBar'; |
| 7 | import Toolbar from '@material-ui/core/Toolbar'; |
| 8 | import Typography from '@material-ui/core/Typography' |
| 9 | |
| 10 | |
| 11 | |
| 12 | export 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 | } |