11 lines
328 B
HTML
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)" />
|