plate-tool/src/components/tree.rs

12 lines
184 B
Rust
Raw Normal View History

2023-05-21 16:45:12 +00:00
#![allow(non_snake_case)]
use dioxus::prelude::*;
#[inline_props]
pub fn Tree(cx: Scope) -> Element {
cx.render(rsx! {
div {
class: "tree",
}
})
}