dioxus/examples/custom_assets.rs
Marc Espín c113d96bbe
fix: Update logos and custom assets example (#960)
* fix: Update logo and custom assets example

* update old logos
2023-04-15 08:02:04 -05:00

16 lines
285 B
Rust

use dioxus::prelude::*;
fn main() {
dioxus_desktop::launch(app);
}
fn app(cx: Scope) -> Element {
cx.render(rsx! {
div {
p {
"This should show an image:"
}
img { src: "examples/assets/logo.png" }
}
})
}