Can an angular attribute directive replace parent and child elements?
This is what I mean. Can i create one directive that will replace the 'parent-stylings' and 'child-stylings' below
<div class="parent-stylings">
<div class="child-stylings"></div>
</div>
into something like this
<div #myCustomDirective></div>