Issue: Change the content of a component without loosing the component changes.
Example: I have created a component for a modal window.
Now I create an instance but can’t freely place content inside this modal window without detaching the component and so loosing all the changes to this modal component.
Idea: I created a placeholder component which I add to the modal component. I assumed that I now can create an instance of the modal component and detach only the nested placeholder component.
This unfortunately does not work. The whole modal component is detached and changes in the main compoent are not reflected on the instance anymore because it was detached.
Allowing the user to add content do a component instance would be highly benefitial as it streamlines the process in building designs.