mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-13 16:07:20 +00:00
11 lines
126 B
Rust
11 lines
126 B
Rust
|
use dioxus::prelude::*;
|
||
|
fn main() {}
|
||
|
|
||
|
static Example: FC<()> = |cx| {
|
||
|
cx.render(rsx! {
|
||
|
div {
|
||
|
|
||
|
}
|
||
|
})
|
||
|
};
|