Package Exports
- react-contributors
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-contributors) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-contributors
Small and simple React component to display a fully responsive list of your project's contributors with info gathered from their GitHub profile.
Demo
Live demo: https://evert-arias.github.io/react-contributors/
Install
npm install --save react-contributorsUsage
import React, { Component } from "react";
import Contributors from "react-contributors";
class App extends Component {
render() {
return <Contributors owner="evert-arias" repo="EasyButton" />;
}
}You have to pass the following two props to the component:
owner: Username of the repository owner.
repo: The name of the repository you which to get the contributors from.
License
MIT © Evert Arias