1.0.8 • Published 2 years ago
gh-corners v1.0.8
Installation
Package
import 'gh-corners';unpkg.com CDN:
<script type="module" src="https://unpkg.com/gh-corners@latest"></script>HTML
<github-corners target="__blank" position="fixed" href="https://github.com/hunghg255"></github-corners>Reactjs
npm i react-gh-corners@latestUse
import { GithubCorners } from 'react-gh-corners';
// Nextjs only CSR
const GithubCorners = dynamic(() => import('react-gh-corners').then((m) => m.GithubCorners), {
  ssr: false,
});
const App = () => {
  return (
    <GithubCorners position='right' href='/' />
  );
};