11 lines
164 B
Rust
11 lines
164 B
Rust
use dioxus::prelude::*;
|
|
|
|
use crate::components::UnderConstruction;
|
|
|
|
#[component]
|
|
pub fn Consulting() -> Element {
|
|
rsx! {
|
|
UnderConstruction { },
|
|
}
|
|
}
|