//!
//! A concurrent, functional, virtual DOM for Rust //!
//!= for<'a> fn(&'a Context
) -> VNode<'a>; // TODO @Jon, fix this // hack the VNode type until VirtualNode is fixed in the macro crate pub type VirtualNode<'a> = VNode<'a>; // Re-export from the macro crate pub use dioxus_html_macro::html; // Re-export the FC macro pub use dioxus_core_macro::fc; }