Hello!!
I have created a section and it is successfully integrated into my Angular application. What I want to achieve is to provide data from my Angular Application to the builder component. Something like:
<builder-component name="users" [numberOfUsers]="100"></builder-component>
I have managed to create a data model and bind it with my section, and I have also managed to update the data using REST API. This works just fine. I can use the API and update the numberOfUsers
to the desired number.
I was wondering though If I can provide data directly from the component.
Thanks in advance