Skip to content

A simple React component that list issues for a given repo

Notifications You must be signed in to change notification settings

pcmnac/github-issues-table

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Issues Table

This is a simple component that shows the issues of a particular GitHub repository

GitHub Issues Table

Usage

This section shows how to use this component.

Setup

Install the dependency

npm i -S @pcmnac/github-issues-table

You also have to install peer dependencies

npm i -S semantic-ui-css
npm i -S semantic-ui-react

Import CSS in your project

import 'semantic-ui-css/semantic.min.css';

Example

import React from 'react';
import GithubIssuesTable from '@pcmnac/github-issues-table';

const App = () => (
    <div>
        <h1>My App</h1>
        <GithubIssuesTable user="facebook" repo="react" />
    </div>
);

export default App;

Contribute

This section shows the basics to maintain this component

Local test

git clone https://github.com/pcmnac/github-issues-table.git
cd github-issues-table
npm i
npm start

Build and Publish

npm version x.y.z
npm publish

About

A simple React component that list issues for a given repo

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published