aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/tubo/views.cljs
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/tubo/views.cljs')
-rw-r--r--src/frontend/tubo/views.cljs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frontend/tubo/views.cljs b/src/frontend/tubo/views.cljs
index 0618b51..3abc4e2 100644
--- a/src/frontend/tubo/views.cljs
+++ b/src/frontend/tubo/views.cljs
@@ -3,6 +3,7 @@
[re-frame.core :as rf]
[tubo.components.audio-player :as player]
[tubo.components.navigation :as navigation]
+ [tubo.components.notification :as notification]
[tubo.components.play-queue :as queue]
[tubo.events :as events]))
@@ -14,6 +15,7 @@
[:div.min-h-screen.flex.flex-col.h-full.dark:text-white.dark:bg-neutral-900.relative
[navigation/navbar current-match]
[:div.flex.flex-col.flex-auto.justify-between.relative.font-nunito
+ [notification/notifications-panel]
(when-let [view (-> current-match :data :view)]
[view current-match])
[queue/queue]