hypen_engine/
lib.rs

1pub mod ir;
2pub mod reactive;
3pub mod reconcile;
4pub mod dispatch;
5pub mod lifecycle;
6pub mod serialize;
7pub mod engine;
8pub mod state;
9pub mod logger;
10pub mod render;
11
12#[cfg(target_arch = "wasm32")]
13pub mod wasm;
14
15pub use engine::Engine;
16
17pub use ir::{ast_to_ir, Element, Value};
18pub use lifecycle::{Module, ModuleInstance};
19pub use reconcile::Patch;
20pub use state::StateChange;