fix typo in component name

This commit is contained in:
Greg Johnston
2025-09-03 19:52:01 -04:00
committed by GitHub
parent 50b6380477
commit 60737787d9

View File

@@ -90,7 +90,7 @@ Because it offers the best blend of performance characteristics, Leptos defaults
// the title and metadata *after* loading the data
<Route
path=path!("/post/:id")
view=Post
view=BlogPost
ssr=SsrMode::Async
/>
</Routes>
@@ -149,7 +149,7 @@ Combined with the following route definition, which uses `SsrMode::PartiallyBloc
// the title and metadata *after* loading the data
<Route
path=path!("/post/:id")
view=Post
view=BlogPost
ssr=SsrMode::PartiallyBlocked
/>
</Routes>