trictrac/clients/web/src/main.rs

19 lines
273 B
Rust
Raw Normal View History

2026-04-25 16:49:25 +02:00
leptos_i18n::load_locales!();
mod api;
mod app;
mod game;
mod portal;
use app::App;
2026-04-25 21:51:16 +02:00
use i18n::I18nContextProvider;
2026-04-25 16:49:25 +02:00
use leptos::prelude::*;
fn main() {
2026-04-25 21:51:16 +02:00
mount_to_body(|| view! {
<I18nContextProvider>
<App />
</I18nContextProvider>
})
2026-04-25 16:49:25 +02:00
}