Files
service-aware-frontend/pkgs/ui/src/components/consume_content/index.tsx

10 lines
222 B
TypeScript

const ConsumeDisplayComponent = ({ htmlContent }: { htmlContent: any }) => {
return (
<div>
<div dangerouslySetInnerHTML={{ __html: htmlContent }} />
</div>
);
};
export default ConsumeDisplayComponent;