2021-05-09 11:26:50 +00:00
|
|
|
#![recursion_limit = "256"]
|
2021-11-10 09:53:37 +00:00
|
|
|
#![forbid(non_ascii_idents)]
|
2023-02-10 10:37:36 +00:00
|
|
|
#![allow(clippy::uninlined_format_args)]
|
2023-03-08 17:05:08 +00:00
|
|
|
#![allow(clippy::let_unit_value)]
|
2023-02-10 10:37:36 +00:00
|
|
|
|
2021-09-12 09:54:47 +00:00
|
|
|
pub mod components;
|
|
|
|
pub mod infra;
|
2021-05-08 09:34:55 +00:00
|
|
|
|
2021-05-09 11:26:50 +00:00
|
|
|
use wasm_bindgen::prelude::{wasm_bindgen, JsValue};
|
2021-05-08 09:34:55 +00:00
|
|
|
|
|
|
|
#[wasm_bindgen]
|
|
|
|
pub fn run_app() -> Result<(), JsValue> {
|
2023-03-08 17:05:08 +00:00
|
|
|
yew::start_app::<components::app::AppContainer>();
|
2021-05-08 09:34:55 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|