reratui_core/lib.rs
1//! Reratui Core - Core runtime and virtual DOM types
2//!
3//! This crate provides the foundational types and traits for the Reratui framework.
4
5pub mod component;
6pub mod layout;
7pub mod props;
8pub mod vnode;
9
10// Re-export commonly used types
11pub use component::Component;
12pub use layout::{AnyWidget, BlockWrapper, LayoutWrapper};
13pub use props::ComponentProps;
14pub use vnode::{Element, PropValue};