enaqx / awesome-react

A collection of awesome things regarding React ecosystem
65.68k stars 7.22k forks source link

add await-promise #1433

Open issadarkthing opened 15 hours ago

issadarkthing commented 15 hours ago

This library helps in fetching data from server component and pass it down to children components. Normally you would await the promise in the server component but this is bad since you have to wait every promises in order to paint something on the website. With this library, it will make the server component display immediately. This library also make use of Suspense where the component will show a fallback component while waiting for the component to resolve.