Macro mogwai::builder

source ·
builder!() { /* proc-macro */ }
Expand description

Uses an html description to construct a ViewBuilder.

Deprecated since 0.6

Use html! instead, or convert to rsx!.

let my_div = mogwai_dom::html! {
    <div id="main">
        <p>"Trolls are real"</p>
    </div>
};