created basic webApplication

This commit is contained in:
2022-10-20 01:46:30 +10:00
parent af6a09c582
commit ed15ca57f6
32 changed files with 1286 additions and 490 deletions

View File

@@ -0,0 +1,9 @@
<p>Борды работают, это в хтмл!</p>
<button (click)="listPosts()">Обновить</button>
<div *ngIf="response">
<div class="singlePost" *ngFor="let post of response">
<p>Айди: {{post.Id}}</p>
<p>Текст: {{post.Text}}</p>
</div>
</div>