i created a new desktop app with dx new and selected the desktop boilerplate, then i used dx serve and changed some strings. it rebuilds every single time. how can i solve this?
rsx! {
Link { to: Route::Blog { id: count() }, "Go to blffogg" }
div {
h1 { "High-Five countdsdfggr: {count}" }
button { onclick: move |_| count += 1, "Up high!h" }
button { onclick: move |_| count -= 1, "Down low!" }
}
}