diff --git a/apps/web/components/NextJsExample.tsx b/apps/web/components/NextJsExample.tsx index 03b638ab..4fe2a680 100644 --- a/apps/web/components/NextJsExample.tsx +++ b/apps/web/components/NextJsExample.tsx @@ -350,6 +350,10 @@ export const NextJsExample: FC = () => { }); }} /> +

+ Using suspense-enabled router transition, you will not see any loader + or jumping content. +

{todosShown ? : } diff --git a/examples/nextjs/app/page.tsx b/examples/nextjs/app/page.tsx index 5330d1c5..a0c2af89 100644 --- a/examples/nextjs/app/page.tsx +++ b/examples/nextjs/app/page.tsx @@ -352,12 +352,15 @@ const Page: FC = () => { }); }} /> +

+ Using suspense-enabled router transition, you will not see any loader + or jumping content. +

{todosShown ? : } ); - // return
hovno
; }; export default Page;