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