use yew::prelude::*;
use wasm_bindgen::prelude::*;
mod component;
mod utils;
#[cfg(feature = "wee_alloc")]
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
#[wasm_bindgen(start)]
pub fn run_app() {
App::<component::button::Button>::new().mount_to_body();
}