10 lines
133 B
Rust
10 lines
133 B
Rust
mod app;
|
|
mod components;
|
|
mod trictrac;
|
|
|
|
use app::App;
|
|
use leptos::prelude::*;
|
|
|
|
fn main() {
|
|
mount_to_body(|| view! { <App /> })
|
|
}
|