const App = () => {
const data = 'lorem <b>ipsum</b>';
return (
<div
dangerouslySetInnerHTML={{__html: data}}
/>
);
}
export default App;
<div
dangerouslySetInnerHTML={{
__html: props.house.description
}}></div>
// Before
import { render } from 'react-dom';
const container = document.getElementById('app');
render(<App tab="home" />, container);
// After
import { createRoot } from 'react-dom/client';
const container = document.getElementById('app');
const root = createRoot(container); // createRoot(container!) if you use TypeScript
root.render(<App tab="home" />);
import React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render(<p>Hello</p>, document.getElementById('root'));
Code Example |
---|
Html :: how to remove line in href tag in html |
Html :: html email regex |
Html :: bulma fullheight |
Html :: page auto refresh |
Html :: html video element |
Html :: input range event |
Html :: add title to navbar html |
Html :: bootstrap + cards |
Html :: textarea ckeditor |
Html :: html5 select |
Html :: using svg in html |
Html :: links in html |
Html :: typo3 symlinks |
Html :: blobs fish |
Html :: bootstrap css |
Html :: how to connect a javascript file to html |
Html :: table header html |
Html :: hmtl image import |
Html :: jquery loop print html() |
Html :: The <select Element |
Html :: wikipedia api url |
Html :: prefetch tag |
Html :: split screen html |
Html :: angular nested if else |
Html :: html textarea auto height to amount of text |
Html :: html file path |
Html :: v-expansion-panel example |
Html :: bootstrap tab |
Html :: html how to hide and show multiple |
Html :: set placeholder text |