React에서 HTML 문자열을 출력하는 방법

2021. 1. 20. 02:56서버 프로그래밍

아주 간단해서 좋지만 기억하지는 못해서 매번 찾아볼것 같다. ㅎㅎ

<div dangerouslySetInnerHTML={{__html: '<strong>strong text</strong>'}} />

medium.com/@uigalaxy7/how-to-render-html-in-react-7f3c73f5cafc

 

How to render HTML in react

Find out how to render an HTML string in the dom without skipping, using React.

medium.com