mirror of
https://github.com/leptos-rs/book.git
synced 2025-12-27 07:35:38 -05:00
fix typo in component name
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user