Procedural macros for Whisker.
- [
main] — designates the user's app entry. Generates thewhisker_app_mainandwhisker_tickFFI exports the native host calls into; the user writesfn app() -> Element. - [
render!] — fine-grained renderer macro. Emits imperativeview::*dispatch +effects for dynamic parts. Seecrates/whisker-macros/src/render.rsfor the grammar. - [
component] — wraps a function so it runs inside a fresh reactive owner. The owner is registered against the function's fn pointer so the hot-reload remount path can find it. Seedocs/reactivity-design.md.