I am trying to create content that is displayed when a Expand widget is activated for it.
simple example
<div class="bg-white">
<p>Please select importance</p>
<button (click)="trigger('high')">High</button>
<button (click)="trigger('mediumd')">Medium</button>
<button (click)="trigger('Low')">Low</button>
</div>
this is in my component currently, I'd like to have it show up in a expanded widget, but not sure where to place the content (inside the div#map) and how to then reference it back to Expand widget.