13 lines
321 B
Rust
13 lines
321 B
Rust
use crate::components::{error_boundary_message::ErrorBoundaryMessage, project_form::ProjectForm};
|
|
use dioxus::prelude::*;
|
|
|
|
#[component]
|
|
pub(crate) fn ProjectFormPage() -> Element {
|
|
rsx! {
|
|
ErrorBoundaryMessage {
|
|
class: "grow py-4 flex flex-col gap-12",
|
|
ProjectForm {}
|
|
}
|
|
}
|
|
}
|