mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-15 00:47:09 +00:00
26 lines
600 B
Rust
26 lines
600 B
Rust
use std::{cell::RefCell, rc::Rc};
|
|
|
|
use anyhow::{Context, Result};
|
|
use dioxus::prelude::*;
|
|
use dioxus_core as dioxus;
|
|
use dioxus_html as dioxus_elements;
|
|
|
|
type Shared<T> = Rc<RefCell<T>>;
|
|
|
|
#[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();
|
|
// },
|
|
// },
|
|
// })
|
|
// };
|
|
}
|