mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-12 22:02:28 +00:00
21 lines
582 B
Rust
21 lines
582 B
Rust
use anyhow::{Context, Result};
|
|
use dioxus::{diff::DiffMachine, prelude::*, scheduler::Scheduler, DomEdit};
|
|
use dioxus_core as dioxus;
|
|
use dioxus_html as dioxus_elements;
|
|
|
|
#[test]
|
|
fn sample_refs() {
|
|
// static App: FC<()> = |cx| {
|
|
// let div_ref = use_node_ref::<MyRef, _>(cx);
|
|
|
|
// cx.render(rsx! {
|
|
// div {
|
|
// style: { color: "red" },
|
|
// node_ref: div_ref,
|
|
// onmouseover: move |_| {
|
|
// div_ref.borrow_mut().focus();
|
|
// },
|
|
// },
|
|
// })
|
|
// };
|
|
}
|