A weird combination, but seems like `nextjournal/clerk` would benefit from it. The [initial discussion](https://clojurians.slack.com/archives/C0620C0C8/p1666341269413309) on Slack. A minimal reproducible example: ```clojure (ns app.core (:require [reagent.dom.server :as dom.server] [reagent.core :as r])) (r/set-default-compiler! (r/create-compiler {:function-components true})) (defn root [] (r/create-class {:reagent-render (fn [] [:span])}) ;[:span] ) (js/console.log (dom.server/render-to-string [root])) ``` Uncommenting that `[:span]` makes it work. Rendering to a regular DOM makes it work. Not using function components makes it work.