Merge branch 'main' into avm99963-monorail

Merged commit 4137ed7879acadbf891e8c471108acb874dae886.

GitOrigin-RevId: b6100ffc5b1da355a35f37b13fcaaf746ee8b307
diff --git a/static_src/react/issue-wizard/Header.tsx b/static_src/react/issue-wizard/Header.tsx
new file mode 100644
index 0000000..e8dfdd9
--- /dev/null
+++ b/static_src/react/issue-wizard/Header.tsx
@@ -0,0 +1,26 @@
+// Copyright 2021 The Chromium Authors. All rights reserved.
+// 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 />
+    </>
+  );
+
+
+}
\ No newline at end of file