Procedural macro entry points for the builderx DSL.
The bx! macro transforms a nested, JSX-ish syntax into builder calls using
an adapter that knows how to attach children for a concrete toolkit.
Examples
Using the facade crate:
use builderx::bx;
let _ = bx! { div[flex]{ "hello" } };