aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/tau/components/navigation.cljs
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/tau/components/navigation.cljs')
-rw-r--r--src/frontend/tau/components/navigation.cljs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/frontend/tau/components/navigation.cljs b/src/frontend/tau/components/navigation.cljs
new file mode 100644
index 0000000..a0d25e2
--- /dev/null
+++ b/src/frontend/tau/components/navigation.cljs
@@ -0,0 +1,13 @@
+(ns tau.components.navigation
+ (:require
+ [re-frame.core :as rf]
+ [tau.events :as events]))
+
+(defn back-button []
+ (let [service-color @(rf/subscribe [:service-color])]
+ [:div.flex {:class "w-4/5"}
+ [:button.p-2
+ {:on-click #(rf/dispatch [::events/history-back])}
+ [:i.fa-solid.fa-chevron-left
+ {:style {:color service-color}}]
+ [:span " Back"]]]))