Split the crate in 3, introduce JS frontend

This commit is contained in:
Valentin Tolmer
2021-05-08 11:34:55 +02:00
parent 9459f53a13
commit c58459547b
9 changed files with 119 additions and 39 deletions
+10
View File
@@ -0,0 +1,10 @@
mod app;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub fn run_app() -> Result<(), JsValue> {
yew::start_app::<app::App>();
Ok(())
}