chore: clear warning

This commit is contained in:
Greg Johnston 2024-06-08 07:25:58 -04:00
parent f32d43ce94
commit 07e878adf7
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ fn SlotIf(
#[component]
pub fn App() -> impl IntoView {
let (count, set_count) = create_signal(0);
let (count, set_count) = signal(0);
let is_even = MaybeSignal::derive(move || count.get() % 2 == 0);
let is_div5 = MaybeSignal::derive(move || count.get() % 5 == 0);
let is_div7 = MaybeSignal::derive(move || count.get() % 7 == 0);