dioxus/examples/testbed.rs
2021-07-11 19:31:07 -04:00

15 lines
168 B
Rust

use dioxus::prelude::*;
fn main() {}
static App: FC<()> = |cx| {
//
cx.render(rsx!(
div {
h1 {}
}
))
};
#[test]
fn blah() {}