feat: merge web-user-portal & web-game
This commit is contained in:
parent
9cc605409e
commit
557f0249f8
34 changed files with 5562 additions and 10 deletions
14
clients/web/src/main.rs
Normal file
14
clients/web/src/main.rs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
leptos_i18n::load_locales!();
|
||||
|
||||
mod api;
|
||||
mod app;
|
||||
mod game;
|
||||
mod nav;
|
||||
mod portal;
|
||||
|
||||
use app::App;
|
||||
use leptos::prelude::*;
|
||||
|
||||
fn main() {
|
||||
mount_to_body(|| view! { <App /> })
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue