Initial Commit

This commit is contained in:
2022-07-29 01:36:18 +02:00
commit 6c49c0a8c5
32 changed files with 4398 additions and 0 deletions

12
frontend/src/lib.rs Normal file
View File

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