dioxus/reference/testing.rs

10 lines
124 B
Rust
Raw Normal View History

2021-07-02 01:30:52 -04:00
use dioxus::prelude::*;
2021-09-21 13:42:52 -04:00
pub static Example: FC<()> = |cx, props| {
2021-07-02 01:30:52 -04:00
cx.render(rsx! {
div {
}
})
};