beet_rsx 0.0.8

An Astro inspired templating system built with bevy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "scene")]
mod apply_client_islands;
mod apply_directives_plugin;
mod apply_reactive_text_nodes;
mod apply_style_id;
mod html_fragment;
mod lang_snippet_hash;
#[cfg(feature = "scene")]
pub use apply_client_islands::*;
pub use apply_directives_plugin::*;
pub use apply_reactive_text_nodes::*;
pub(super) use apply_style_id::*;
pub use html_fragment::*;
pub use lang_snippet_hash::*;
mod html_document;
pub use html_document::*;
mod apply_dom_idx;
pub use apply_dom_idx::*;