docs: fix interlude_projecting_children.md (#1690)

This commit is contained in:
Michael Jarvis
2023-09-10 20:18:11 +01:00
committed by GitHub
parent 1719c0d352
commit 8c3e0f23b0

View File

@@ -89,7 +89,7 @@ We can solve this problem by using the [`store_value`](https://docs.rs/leptos/la
In this case, its really simple:
```rust
pub fn LoggedIn<F, IV>(F, children: ChildrenFn) -> impl IntoView
pub fn LoggedIn<F, IV>(fallback: F, children: ChildrenFn) -> impl IntoView
where
F: Fn() -> IV + 'static,
IV: IntoView,