14 lines
256 B
Rust
14 lines
256 B
Rust
|
|
pub mod app;
|
||
|
|
pub mod auth;
|
||
|
|
pub mod chat;
|
||
|
|
|
||
|
|
#[cfg(feature = "ssr")]
|
||
|
|
pub mod server;
|
||
|
|
|
||
|
|
#[cfg(feature = "hydrate")]
|
||
|
|
#[wasm_bindgen::prelude::wasm_bindgen]
|
||
|
|
pub fn hydrate() {
|
||
|
|
console_error_panic_hook::set_once();
|
||
|
|
leptos::mount::hydrate_body(app::App);
|
||
|
|
}
|