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
mod dom_binding;
mod dom_diff;
mod load_client_islands;
pub use dom_binding::*;
pub use dom_diff::*;
pub(crate) use load_client_islands::*;
mod client_only;
mod event_playback;
pub(crate) use client_only::*;
pub(crate) use event_playback::*;


pub fn document_exists() -> bool {
	web_sys::window().map(|w| w.document()).flatten().is_some()
}