Files
ng-blog/frontend/src/app/routes/post/update-post/update-post.component.html
2025-04-28 14:25:58 +02:00

11 lines
328 B
HTML

<div class="flex items-center justify-between mb-5">
<h1 class="text-3xl">Update a Post</h1>
<button
class="bg-amber-400 rounded-full p-1 px-5 hover:bg-amber-500 active:bg-amber-600 transition-colors"
(click)="save()"
>
save
</button>
</div>
<app-post-editor [post]="post" (postChange)="post.set($event)" />