mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
9 lines
124 B
Rust
9 lines
124 B
Rust
use dioxus::prelude::*;
|
|
|
|
pub static Example: FC<()> = |cx, props| {
|
|
cx.render(rsx! {
|
|
div {
|
|
|
|
}
|
|
})
|
|
};
|