(defn
reactify-component
"Returns an adapter for a Reagent component, that may be used from\n React, for example in JSX. A single argument, props, is passed to\n the component, converted to a map."
[c]
(assert-some c "Component")
(comp/reactify-component c))