Files
hemma/frontend/src/lib.rs
2022-07-29 01:38:35 +02:00

13 lines
194 B
Rust

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);
}