chore: remove trailing whitespace, add CR at end of file
All checks were successful
/ test (pull_request) Successful in 3m36s

This commit is contained in:
Glen Whitney 2025-10-10 10:20:38 -07:00
parent 50c51ca08f
commit 3405797d14
11 changed files with 320 additions and 320 deletions

View file

@ -30,7 +30,7 @@ impl AppState {
selection: create_signal(BTreeSet::default()),
}
}
// in single-selection mode, select the given element. in multiple-selection
// mode, toggle whether the given element is selected
fn select(&self, element: &Rc<dyn Element>, multi: bool) {
@ -53,10 +53,10 @@ fn main() {
// set the console error panic hook
#[cfg(feature = "console_error_panic_hook")]
console_error_panic_hook::set_once();
sycamore::render(|| {
provide_context(AppState::new());
view! {
div(id = "sidebar") {
AddRemove {}
@ -66,4 +66,4 @@ fn main() {
Display {}
}
});
}
}