Awesome
use-suspense-today
Use React Suspense today, with any data fetching library
Install
npm install --save use-suspense-today
Usage
import * as React from 'react'
import { useSuspense } from 'use-suspense-today'
const Child = () => {
const { loading, data } = useApiThatIsNotSuspenseReady();
useSuspense(loading);
return <section>{data}</section>;
};
const Parent = () => {
return (
<React.Suspense fallback={<div>Loading...</div>}>
<Child />
</React.Suspense>
);
};
License
MIT © Hermanya
This hook is created using create-react-hook.