Skip to content

Instantly share code, notes, and snippets.

View DevTahsin's full-sized avatar
💭
I may be slow to respond.

Tahsin Gül DevTahsin

💭
I may be slow to respond.
View GitHub Profile
@DevTahsin
DevTahsin / any.component.html
Created November 24, 2018 14:42 — forked from arniebradfo/any.component.html
Angular *ngFor recursive list tree template
<h1>Angular 2 Recursive List</h1>
<ul>
<ng-template #recursiveList let-list>
<li *ngFor="let item of list">
{{item.title}}
<ul *ngIf="item.children.length > 0">
<ng-container *ngTemplateOutlet="recursiveList; context:{ $implicit: item.children }"></ng-container>
</ul>
</li>
</ng-template>