leptos-sync-components 0.9.0

Leptos components for synchronization UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Sync status indicator component

use leptos::*;
use leptos::prelude::*;

#[component]
pub fn SyncStatusIndicator() -> impl IntoView {
    view! {
        <div>
            <span>"Sync Status: Connected"</span>
        </div>
    }
}