canonrs-client 0.1.0

CanonRS client-side runtime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! CanonRS Client — WASM facade (ui-interactive + islands)
pub mod engines;
pub mod shared;
#[allow(unused_imports)]
#[cfg(feature = "hydrate")]
pub use canonrs_core::primitives;
#[allow(ambiguous_glob_reexports)]
pub use canonrs_core::primitives::*;
pub use canonrs_core::infra::theme as providers;
pub use canonrs_core::infra::theme::ThemeMode;

pub mod runtime;
pub mod hooks;

pub mod themes;
pub mod ui;