react can I return chilren with empty frangement code example
Example 1: react fragment
render() {
return (
<React.Fragment>
<ChildA />
<ChildB />
<ChildC />
</React.Fragment>
);
}
Example 2: returned data has p tags react
return <div dangerouslySetInnerHTML={{ __html: yourStringWithHtmlInIt }} />;