Link aggregation and post comments on ATProto!
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}