I have this component:
export function Text({ label }) {
return <p>{label}</p>;
}
Builder.registerComponent(Text, {
name: 'Text',
inputs: [
{
name: 'text',
type: 'html',
},
],
});
The html is displayed as it is, with the tags.
how do i render the html/richtext as text?