Link to inserting raw HTML document

This commit is contained in:
xmo-odoo 2015-03-16 10:51:20 +01:00
parent 68a2f89cc6
commit f0c7b0c8ed
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ You can use mixed arrays with strings and JSX elements.
<div>{['First ', <span>&middot;</span>, ' Second']}</div>
```
As a last resort, you always have the ability to [insert raw HTML](/react/docs/dom-differences.html).
As a last resort, you always have the ability to [insert raw HTML](/react/tips/dangerously-set-inner-html.html).
```javascript
<div dangerouslySetInnerHTML={{'{{'}}__html: 'First &middot; Second'}} />