dioxus/examples/core_reference/testing.rs

10 lines
126 B
Rust
Raw Normal View History

2021-07-02 05:30:52 +00:00
use dioxus::prelude::*;
2021-10-16 21:37:28 +00:00
pub static Example: FC<()> = |(cx, props)| {
2021-07-02 05:30:52 +00:00
cx.render(rsx! {
div {
}
})
};