A react component that displays your Github repos
npm install --save github-repo-display-react
import React, { Component } from "react"
import { GithubRepoDisplay } from "github-repo-display-react"
import "github-repo-display-react/dist/index.css" // default github styling
const App = () => {
return (
<div>
<GithubRepoDisplay
numOfrepos={5} // must be included
userName='msmfa' // must be included
/>
</div>
)
}
export default App
...
const App = () => {
return (
<div>
<GithubRepoDisplay
numOfrepos={5}
userName='msmfa'
showStars={true} // displays stars
showLanguage ={true} // displays language
/>
</div>
)
}
...
MIT © MSMFA