Hi guys, I just started to learn re-frame and I was wondering if it is possibly for re-frame to render html code that I have stored in the database in the view
when I do in the view [:div [show-content]]
it shows the raw html as text
This is a question about React in general. Re-frame doesn't render anything, and Reagent just delegates rendering to React. https://github.com/reagent-project/reagent/blob/master/doc/FAQ/dangerouslySetInnerHTML.md
Thank you very much! I’ll have a look
sweet, it worked!