Skip to content

How Do I Render an HTML String as HTML in a Component? #3993

Answered by marvinhagemeister
zicklag asked this question in Q&A
Discussion options

You must be logged in to vote

You can inject HTML strings via the dangerouslySetInnerHTML prop:

function RenderHTML() {
  const markup = { __html: '<p>some raw html</p>' };
  return <div dangerouslySetInnerHTML={markup} />;
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by zicklag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants