mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
fix: lint issues in router
example (#996)
* build: add common tasks * fix: resolve check-style issues
This commit is contained in:
parent
630da4212d
commit
f0f1c3144b
2 changed files with 3 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
|||
extend = { path = "../cargo-make/common.toml" }
|
||||
|
||||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
|
|
|
@ -107,7 +107,7 @@ pub fn ContactList(cx: Scope) -> impl IntoView {
|
|||
<Suspense fallback=move || view! { cx, <p>"Loading contacts..."</p> }>
|
||||
{move || view! { cx, <ul>{contacts}</ul>}}
|
||||
</Suspense>
|
||||
<AnimatedOutlet
|
||||
<AnimatedOutlet
|
||||
class="outlet"
|
||||
outro="fadeOut"
|
||||
intro="fadeIn"
|
||||
|
|
Loading…
Reference in a new issue