package templates import "fmt" // NotificationList renders the container for notifications templ NotificationList() { } // NotificationToast renders a single notification toast templ NotificationToast(message, notificationType string) {
  • } // Helper functions for common notification types templ SuccessNotification(message string) { @NotificationList() { @NotificationToast(message, "success") } } templ ErrorNotification(message string) { @NotificationList() { @NotificationToast(message, "danger") } } templ WarningNotification(message string) { @NotificationList() { @NotificationToast(message, "warning") } } templ InfoNotification(message string) { @NotificationList() { @NotificationToast(message, "info") } }