fish-usefetch

``` yarn add @lin/useFetch or npm install @lin/useFetch --save ```

Usage no npm install needed!

<script type="module">
  import fishUsefetch from 'https://cdn.skypack.dev/fish-usefetch';
</script>

README

使用

const App = () => {
  const [result, isLoading, sendFetch] = useFetch({
    url: '/dangerDevices',
  });

  if (isLoading) return <div>loading...</div>;

  return (
    <div>
      <div>result:{JSON.stringify(result)}</div>
      <button onClick={sendFetch}>重新加载</button>
    </div>
  );
};