feat: add client_web (leptos impl. for 'multiplayer' project)
This commit is contained in:
parent
46416cdaef
commit
44451d8642
15 changed files with 1661 additions and 9 deletions
10
client_web/src/main.rs
Normal file
10
client_web/src/main.rs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
mod app;
|
||||
mod components;
|
||||
mod trictrac;
|
||||
|
||||
use app::App;
|
||||
use leptos::prelude::*;
|
||||
|
||||
fn main() {
|
||||
mount_to_body(|| view! { <App /> })
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue