vytal-redux/frontend/src/components/Github.js
2021-07-24 14:28:48 -04:00

15 lines
289 B
JavaScript

import { ReactComponent as GithubImg } from '../images/github.svg';
const Github = () => (
<a
href="https://github.com/z0ccc/Vytal"
className="github"
target="_blank"
rel="noreferrer"
alt="Link to Github page"
>
<GithubImg />
</a>
);
export default Github;