maple-core-macro 0.4.2

A VDOM-less web library with fine grained reactivity
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(non_snake_case)]

use maple_core::prelude::*;

pub fn Component() -> TemplateResult {
    template! {
        div
    }
}

fn compile_pass() {
    template! { Component() };
}

fn main() {}