Initial Commit
This commit is contained in:
12
frontend/src/lib.rs
Normal file
12
frontend/src/lib.rs
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user