This commit is contained in:
2026-01-27 11:03:06 +01:00
parent be1a21b746
commit 472b33688d
23 changed files with 332 additions and 369 deletions

View File

@@ -1,4 +1,5 @@
use crate::components::error_boundary_message::ErrorBoundaryMessage;
use crate::components::task_form::TaskForm;
use crate::models::category::Category;
use crate::views::category_page::CategoryPage;
use dioxus::core_macro::rsx;
@@ -12,6 +13,10 @@ pub(crate) fn CategoryInboxPage() -> Element {
CategoryPage {
category: Category::Inbox,
}
TaskForm {
task: None,
on_successful_submit: move |_| {}
}
}
}
}