mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
9 lines
124 B
Rust
9 lines
124 B
Rust
use dioxus::prelude::*;
|
|
|
|
pub static Example: Component<()> = |cx| {
|
|
cx.render(rsx! {
|
|
div {
|
|
|
|
}
|
|
})
|
|
};
|