Complete "Hydrate Fallback".

Note: I checked in React DevTool that the Suspend and the fallback is present, but the skeleton of the page is already rendered into the server so that Suspend is impossible to trigger!
You can see it as it is during long load, o I will probably remove it in the next commit.
This commit is contained in:
2025-04-01 11:41:33 +02:00
parent 4330157491
commit 595520296c

8
src/app/loading.tsx Normal file
View File

@@ -0,0 +1,8 @@
export default function Loading() {
return (
<div id="loading-splash">
<div id="loading-splash-spinner"/>
<p>Loading, please wait...</p>
</div>
);
}