sycamore-macro 0.6.0

A VDOM-less web library with fine grained reactivity
Documentation
#[test]
fn template_ui() {
    let t = trybuild::TestCases::new();
    t.pass("tests/template/*-pass.rs");
    if std::env::var("RUN_UI_TESTS").is_ok() {
        t.compile_fail("tests/template/*-fail.rs");
    }
}

#[test]
fn component_ui() {
    let t = trybuild::TestCases::new();
    t.pass("tests/component/*-pass.rs");
    if std::env::var("RUN_UI_TESTS").is_ok() {
        t.compile_fail("tests/component/*-fail.rs");
    }
}