feat: add notification component

This commit is contained in:
2025-12-20 18:27:59 -03:00
parent 7c545e2b1e
commit dc3def94c4
4 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
@if(notification$(); as notification) {
<div class="notification notification--{{notification.type}} notification--fade-in-out">
<p>{{ notification.message }}</p>
</div>
}