mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-11 15:07:08 +00:00
14 lines
253 B
Rust
14 lines
253 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
div {
|
|
"This should show an image:"
|
|
img { src: "examples/assets/logo.png", }
|
|
}
|
|
})
|
|
}
|