generated from Luis/nextjs-python-web-template
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
const ConsumeDisplayComponent = ({ htmlContent }: { htmlContent: any }) => {
|
|
return (
|
|
<div>
|
|
<div dangerouslySetInnerHTML={{ __html: htmlContent }} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ConsumeDisplayComponent;
|