diff --git a/packages/example/src/routes/async.tsx b/packages/example/src/routes/async.tsx
index 602881d..a443dab 100644
--- a/packages/example/src/routes/async.tsx
+++ b/packages/example/src/routes/async.tsx
@@ -34,6 +34,7 @@ class AsyncFetchPostView extends Component.make("AsyncFetchPostView")(function*(
)
}).pipe(
Async.async,
+ Async.withOptions({ defaultFallback: Loading post... }),
Memoized.memoized,
) {}
@@ -50,9 +51,7 @@ const AsyncRouteComponent = Component.make("AsyncRouteView")(function*() {
onValueChange={flow(Array.head, Option.getOrThrow, setId)}
/>
- Loading...}>
-
-
+
)