feat: UI overhaul
This commit is contained in:
12
src/views/task_form_page.rs
Normal file
12
src/views/task_form_page.rs
Normal file
@@ -0,0 +1,12 @@
|
||||
use crate::components::{error_boundary_message::ErrorBoundaryMessage, task_form::TaskForm};
|
||||
use dioxus::prelude::*;
|
||||
|
||||
#[component]
|
||||
pub(crate) fn TaskFormPage() -> Element {
|
||||
rsx! {
|
||||
ErrorBoundaryMessage {
|
||||
class: "grow py-4 flex flex-col gap-12",
|
||||
TaskForm {}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user