1.0.0 • Published 7 years ago

react-fetch-loader v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

React Fetch Loader

Higher order component for managing loading state and error state.

Usage Example

Props:

  • fetch: the AJAX call as a promise (required)
  • errorText: text to display on error state

Basic Example:

    <FetchLoader fetch={() => fetch('https://api.github.com/users/asafda')} errorText="Ooops...">
      <DataDisplayer/>
    </FetchLoader>

Installation

Via NPM:

npm install --save react-fetch-loader

Via Yarn:

yarn add react-fetch-loader