vytal-redux/frontend/src/components/Github.js
2021-09-28 23:23:56 -04:00

16 lines
381 B
JavaScript

import './GitHub.css';
import GitHubButton from 'react-github-btn';
const Github = () => (
<div className="gitHubButton">
<GitHubButton
href="https://github.com/z0ccc/Vytal"
data-color-scheme="no-preference: light; light: light; dark: light;"
aria-label="Star z0ccc/Vytal on GitHub"
>
Star
</GitHubButton>
</div>
);
export default Github;