问题 I am trying to render a json list with html tags in the string in a list as follows jsbin. It works in Jsbin. But in my console I got warning below: warning Only set one of `children` or `props.dangerouslySetInnerHTML` react/no-danger-with-children just wonder if there is other way to render the list with dangerouslySetInnerHTML to avoid the warning? const displayList = [ { item: 1, text: "<strong>ABC</strong> this should be strong." }, { item: 2, text: "<a>ABC</a> this should be link." }, {