vytal-redux/src/components/GitHub.js
2022-05-13 13:07:57 -04:00

16 lines
387 B
JavaScript

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