reratui-core 0.2.0

Core types, traits, and virtual DOM implementation for the Reratui reactive TUI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Reratui Core - Core runtime and virtual DOM types
//!
//! This crate provides the foundational types and traits for the Reratui framework.

pub mod component;
pub mod layout;
pub mod props;
pub mod vnode;

// Re-export commonly used types
pub use component::Component;
pub use layout::{AnyWidget, BlockWrapper, LayoutWrapper};
pub use props::ComponentProps;
pub use vnode::{Element, PropValue};