im从服务器获取一些html数据。这是我渲染的方式:
const Result = (props) => {
const { description } = props;
return (
<Container>
<Description
dangerouslySetInnerHTML={{ __html: description }}
/>
</Container>
)
}
我的问题是我该如何使用styled-components
来为angerousedInnerHTML设置的每个标签设置样式。可以吗?