Skip to content

Commit

Permalink
fix assets in playground
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnestTeluk committed Jan 22, 2024
1 parent 51201ed commit 9d3183e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions playground/src/components/Header/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import './Header.css';
import { example1, example2 } from '../../examples';
import sparrowqlLogo from '/sparrowqlLogo.png';
import githubMarkWhite from '/github-mark-white.svg';

export const Header = ({ setInput }: { setInput: (value: string) => void }) => (
<div className="Header__Wrapper">
<div className="Header__ListWrapper">
<a href="https://github.com/vazco/sparrowql" target="_blank">
<img
src="/sparrowqlLogo.png"
src={sparrowqlLogo}
alt="sparrowql logo"
className="Header__Logo"
/>
Expand All @@ -24,7 +26,7 @@ export const Header = ({ setInput }: { setInput: (value: string) => void }) => (
target="_blank"
>
<img
src="/github-mark-white.svg"
src={githubMarkWhite}
alt="github logo"
className="Header__Logo"
/>
Expand Down

0 comments on commit 9d3183e

Please sign in to comment.