Initial Commit

This commit is contained in:
2021-12-29 18:11:50 +01:00
commit 7298e8de73
17 changed files with 1707 additions and 0 deletions

11
src/lib.rs Normal file
View File

@ -0,0 +1,11 @@
mod app;
mod css;
mod song;
use seed::prelude::wasm_bindgen;
use seed::App;
#[wasm_bindgen(start)]
pub fn start() {
App::start("app", app::init, app::update, app::view);
}