wasm-component 0.1.7

A crate to create WASM component like Vue.js with a logic of Finite State Machine. Uses wasm-bindgen
//! Test suite for the Web and headless browsers.

#![cfg(target_arch = "wasm32")]

extern crate wasm_bindgen_test;
use wasm_bindgen_test::*;

extern crate web_sys;
extern crate wasm_component;

use wasm_bindgen::JsValue;

use wasm_component::v2::app::dom::App;

wasm_bindgen_test_configure!(run_in_browser);

#[wasm_bindgen_test]
fn create_app_v2() {
    
}