reagent/doc/FAQ/dangerouslySetInnerHTML.md

18 lines
524 B
Markdown
Raw Normal View History

2018-02-13 04:14:26 +00:00
### Question
How can I use React's [dangerouslySetInnerHTML](https://reactjs.org/docs/dom-elements.html#dangerouslysetinnerhtml) feature?
### Answer
A minimal (contrived example):
```clj
[:div
{:dangerouslySetInnerHTML
{:__html "<image height=\"600\" src=\"https://static1.squarespace.com/static/58f9c2fbd2b85759c7e4ec2f/5923cbe4be6594d8a0b033a9/5a0154a6ec212d85ddf7941f/1511246183022/mfsprout_20160406_1234-Print.jpg?format=1500w\"/>"}}]
```
***
Up: [FAQ Index](../README.md)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;