React Components for dynamic buttons for github repo's start, fork etc.
Provies GitHub's Star, Fork, Watch etc.(See full list below) buttons with realtime numbers of star, fork etc. as React Components.
yarn add react-github-buttons
or
npm i react-github-buttons
import React from 'react';
import { Fork, Star, UsedBy, Watch } from 'react-github-buttons';
function App() {
return (
<div>
<Star owner='facebook' repo='react' />
<Fork owner='facebook' repo='react' />
<Watch owner='facebook' repo='react' />
<UsedBy owner='facebook' repo='react' count={2077841} />
</div>
)
}
Issues, bugs and feature request at github issues page
MIT © vaibhavhrt