Currently there's no way to delay rendering until the view is fully ready. A good example is waiting for the database query before rendering the component. I thought about employing some simplistic solutions for that but Suspense completely fits the bill. Suspense should work out of the box but it needs the Wait component. The server should skip updates when the rendered tree is rendering <Wait />. When the wait component is used deeper in the tree rendering is aborted until the whole tree is <Wait />-free.
Currently there's no way to delay rendering until the view is fully ready. A good example is waiting for the database query before rendering the component. I thought about employing some simplistic solutions for that but Suspense completely fits the bill. Suspense should work out of the box but it needs the Wait component. The server should skip updates when the rendered tree is rendering
<Wait />
. When the wait component is used deeper in the tree rendering is aborted until the whole tree is<Wait />
-free.