Skip to content

Commit

Permalink
Fix ssr benchmark compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechu10 committed Jul 26, 2022
1 parent b853089 commit 28b8def
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/sycamore/benches/ssr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ pub fn bench(c: &mut Criterion) {

view! { cx,
div(class="my-container") {
Indexed {
iterable: values,
view: |cx, x| view! { cx,
Indexed(
iterable=values,
view=|cx, x| view! { cx,
ListItem(x)
}
}
)
}
}
}
Expand Down

0 comments on commit 28b8def

Please sign in to comment.