reflex-jsx

Use jsx-like syntax in Reflex

https://github.com/dackerman/reflex-jsx

Latest on Hackage:0.1.0.0

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed by David Ackerman
Maintained by [email protected]

`reflex-jsx` is a library for writing jsx-like syntax in reflex code. This can be useful for situations where you have a large block of HTML with some styles, and it would be easier to read as actual HTML than various reflex functions. It's implemented as a QuasiQuoter, so you just import the jsx function from ReflexJsx and generate the equivalent functions that would run inside of a "MonadWidget t m". Not only can you generate a block of static HTML/CSS, but you can also splice in your own nodes that implement "MonadWidget t m", string attribute values, or even entire dynamic attribute maps.