Skip to content

Commit

Permalink
Add the logo to the header
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneseymour committed Feb 4, 2020
1 parent 4dede04 commit 2336dc4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/dev/code_coverage/cc_app/src/header.jsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
import React from "react";

import logo from './logo_kibana_32_color.svg'
export default function Header({ url }) {
return (
<header className="App-header">
{/*<img src={logo} className="App-logo" alt="logo"/>*/}
<a
className="App-link"
href={url}
target="_blank"
rel="noopener noreferrer"
>
Build Stats Dashboard
<img
src={logo}
className="App-logo"
alt="logo"
style={{ height: 20, width: 20}}
/>

Build Stats
</a>
</header>
);
Expand Down

0 comments on commit 2336dc4

Please sign in to comment.