10 lines
111 B
Rust
10 lines
111 B
Rust
mod app;
|
|
mod hand_view;
|
|
mod tile_view;
|
|
|
|
use app::App;
|
|
|
|
fn main() {
|
|
yew::Renderer::<App>::new().render();
|
|
}
|