Link aggregation and post comments on ATProto!
at private/coded/push-tsyrknxprwws 13 lines 303 B view raw
1// SPDX-FileCopyrightText: 2025 footnotes.social contributors 2// 3// SPDX-License-Identifier: MIT 4 5pub mod app; 6 7#[cfg(feature = "hydrate")] 8#[wasm_bindgen::prelude::wasm_bindgen] 9pub fn hydrate() { 10 use crate::app::*; 11 console_error_panic_hook::set_once(); 12 leptos::mount::hydrate_body(App); 13}