0.1.2 • Published 4 years ago

fetch-hook v0.1.2

Weekly downloads
10
License
-
Repository
github
Last release
4 years ago

fetch-hook

Installation

npm install fetch-hook

OR

yarn add fetch-hook

Quick Start

Basic Usage

import useFetchJson from 'fetch-hook';

function App() {
  const [{ isLoading, error, data }] = useFetchJson(
    'https://swapi.co/api/people',
    {
      method: 'GET'
    }
  );

  if (isLoading) {
    return <div className='App'>En chargement ...</div>;
  }
  return (
    <div className='App'>
      {data &&
        data.results &&
        data.results.map(res => {
          return <p>{res.name}</p>;
        })}
    </div>
  );
}