2026-03-25 16:18:17 +01:00
|
|
|
use leptos::prelude::*;
|
|
|
|
|
|
2026-03-29 17:15:22 +02:00
|
|
|
use crate::i18n::*;
|
|
|
|
|
|
2026-03-25 16:18:17 +01:00
|
|
|
#[component]
|
|
|
|
|
pub fn ConnectingScreen() -> impl IntoView {
|
2026-03-29 17:15:22 +02:00
|
|
|
let i18n = use_i18n();
|
|
|
|
|
view! { <p class="connecting">{t!(i18n, connecting)}</p> }
|
2026-03-25 16:18:17 +01:00
|
|
|
}
|