mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
b2cfc0ed03
This is a massive change to all the components, since the interface changed. There are opportunities to greatly simplify some components by turning them into functional_components, but this work has tried to stay as mechanical as possible.
17 lines
349 B
Rust
17 lines
349 B
Rust
#![recursion_limit = "256"]
|
|
#![forbid(non_ascii_idents)]
|
|
#![allow(clippy::uninlined_format_args)]
|
|
#![allow(clippy::let_unit_value)]
|
|
|
|
pub mod components;
|
|
pub mod infra;
|
|
|
|
use wasm_bindgen::prelude::{wasm_bindgen, JsValue};
|
|
|
|
#[wasm_bindgen]
|
|
pub fn run_app() -> Result<(), JsValue> {
|
|
yew::start_app::<components::app::AppContainer>();
|
|
|
|
Ok(())
|
|
}
|