1.0.0 • Published 6 years ago

irkfdb-react-component v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

irkfdb-react-component

A react component to show IRKFDB facts using IRKFDB Api (irkfdb.in)

Installation

Using npm

npm i irkfdb-react-component

Usage

Import it by using the following:

...
import IrkfbComponent from 'irkfdb-react-component';
...
...
class YourComponent extends Component {
    ...
  render() {
      ...
    return (
        ...
            <IrkfbComponent /> // this place will be replaced by the Rajinikanth fact
        ...
    );
  }
}
...