Need help in integrating bpmn property panel extension list with angular

Hi, I have been following this Link to add custom properties extension list in my angular project.

for this I have copied the magic folder.
I am facing this error.
image

Any help would be appreciated.

before that I have referred link to setup the modeler and property panel in angular.

Hi @yashwardhan_s ,

it looks like we did not update the example to work nicely with tools that also use JSX. Have a look at the normal properties-panel-extension and how it uses htm to wrap the JSX.

Basically, what is happening here, your JSX compiler for Angular is trying to compile the Component from the properties panel extension, which is a Preact component, and fails. By wrapping it with htm, you do not need a JSX compiler for it to work.

Let me know if the properties-panel-extension works for you.

Cheers!

FYI: I created a PR in the examples repository to use htm:

You can try out the branch in your project