aex/src/lib.rs
2025-09-11 10:27:57 +03:00

28 lines
439 B
Rust

pub mod app;
use leptos::prelude::*;
#[macro_use]
extern crate log;
#[allow(unused_imports)]
#[macro_use]
extern crate anyhow;
pub (crate) mod prelude;
pub mod entities;
pub mod state;
pub mod utils;
pub mod statics;
mod components;
use prelude::*;
#[cfg(feature = "hydrate")]
#[wasm_bindgen::prelude::wasm_bindgen]
pub fn hydrate() {
use app::*;
console_error_panic_hook::set_once();
leptos::mount::hydrate_body(App);
}