使用样式组件对innerHTML进行样式设置

时间:2020-09-04 14:14:19

标签: reactjs styled-components

im从服务器获取一些html数据。这是我渲染的方式:

const Result = (props) => {
  const { description } = props;
  return (
    <Container>
      <Description
        dangerouslySetInnerHTML={{ __html: description }}
      />
    </Container>
  )
}

我的问题是我该如何使用styled-components来为angerousedInnerHTML设置的每个标签设置样式。可以吗?

0 个答案:

没有答案