fix: show login name in game

This commit is contained in:
Henri Bourcereau 2026-04-25 21:51:16 +02:00
parent 15a2963f7e
commit c46d26ae02
7 changed files with 81 additions and 47 deletions

View file

@ -7,8 +7,13 @@ mod nav;
mod portal;
use app::App;
use i18n::I18nContextProvider;
use leptos::prelude::*;
fn main() {
mount_to_body(|| view! { <App /> })
mount_to_body(|| view! {
<I18nContextProvider>
<App />
</I18nContextProvider>
})
}