2024-06-02 22:03:30 +00:00
|
|
|
pub mod app;
|
|
|
|
pub mod error_template;
|
|
|
|
#[cfg(feature = "ssr")]
|
|
|
|
pub mod fileserv;
|
|
|
|
|
2024-06-03 22:32:17 +00:00
|
|
|
pub mod components;
|
|
|
|
pub mod routes;
|
2024-06-02 22:03:30 +00:00
|
|
|
pub mod server;
|
|
|
|
|
|
|
|
#[cfg(feature = "hydrate")]
|
|
|
|
#[wasm_bindgen::prelude::wasm_bindgen]
|
|
|
|
pub fn hydrate() {
|
|
|
|
use crate::app::*;
|
|
|
|
console_error_panic_hook::set_once();
|
|
|
|
leptos::mount_to_body(App);
|
|
|
|
}
|