This commit is contained in:
2026-01-28 16:19:43 +01:00
parent 472b33688d
commit 81858de6fc
27 changed files with 462 additions and 404 deletions

View File

@@ -0,0 +1,11 @@
use crate::components::{error_boundary_message::ErrorBoundaryMessage, project_list::ProjectList};
use dioxus::prelude::*;
#[component]
pub(crate) fn ProjectFormPage() -> Element {
rsx! {
ErrorBoundaryMessage {
ProjectList {}
}
}
}