fix: wasm test

This commit is contained in:
Jonathan Kelley 2022-03-03 11:23:01 -05:00
parent 57bd8b7ce2
commit cdbc37711f

View file

@ -21,7 +21,7 @@ fn simple_test() {
static APP: Component = |cx| {
cx.render(rsx! {
Router {
onchange: move |route| log::info!("route changed to {}", route),
onchange: move |route: RouterService| log::info!("route changed to {:?}", route.current_location()),
Route { to: "/", Home {} }
Route { to: "blog"
Route { to: "/", BlogList {} }
@ -48,7 +48,7 @@ fn simple_test() {
}
fn BlogPost(cx: Scope) -> Element {
let id = use_route(&cx).segment::<usize>("id")?;
let id = use_route(&cx).parse_segment::<usize>("id")?;
cx.render(rsx! {
div {