"Simulating" loading state with createAsync
Here's a very simplified example what I'm trying to achieve:
In my real application the
In my real application the
<DataDisplayer /> is a table that I want always rendered and I don't want to enclose it in a <Suspense />. If I were using createResource I would just use .loading. I found this hacky way of using Suspense, but it is pretty dirty. Is there any better way I can do what I want to do?