Using Vanilla or jQuery is pretty simple. But I've no clue in Angular.
I need to create a very custom tree view, so I've this...
<div class="tree">
  <div class="root">
    <div class="node 1" (click)="click()"></div>
  </div>
</div>
I'd like to insert node1 into the root and I need also to handle events.
Any clue about how to archive it ?