euv 0.1.2

A declarative, cross-platform UI framework for Rust with virtual DOM, reactive signals, and RSX macros for WebAssembly.
Documentation
1
2
3
4
5
6
use crate::*;

/// The return type of a component function.
///
/// A component may return a virtual node or nothing.
pub type ComponentElement = Option<VirtualNode>;