Skip to main content

signals_inline

Macro signals_inline 

Source
signals_inline!() { /* proc-macro */ }
Expand description

Emits the bundled Signals core runtime plus the Maud adapter helpers.

This macro installs the window.mx namespace and the binder helpers used by the surreal_scope_signals_inline!() workflow.

use maud_extensions::signals_inline;

fn view() -> maud::Markup {
    maud::html! {
        head {
            (signals_inline!())
        }
    }
}