stoptime-rs/ui/src/lib.rs
Paul van Tilburg bb950fdc99
Switch to Yew 0.17; switch WASM build system
Use crates wasm-pack/web_sys instead of cargo-web/stdweb.
2020-07-14 16:12:20 +02:00

14 lines
205 B
Rust

#![recursion_limit = "256"]
use wasm_bindgen::prelude::*;
use yew::prelude::*;
mod components;
use components::Root;
#[wasm_bindgen(start)]
pub fn run_app() {
App::<Root>::new().mount_to_body();
}