I am trying to create my own dropdown component, but when I try to access data via ng content inside the select tag, it does not work.
this is my html file with custom component:
<select class="form-control">
<ng-content></ng-content>
</select>
this is my main html file where i call the component:
<dropdown>
<option value="">Select details type</option>
<option value="">Personal</option>
<option value="">General</option>
<option value="">Contact</option>
<option value="">Settings</option>
</dropdown>
what am I doing wrong???
source
share