From 84c1ce8343be5a57b7cdb5c0d7ddfb6da31f4daf Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Thu, 24 Sep 2020 13:28:26 -0700 Subject: [PATCH] fixing path. --- src/cljs/auto_ap/views/components/switch-field.cljs | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 src/cljs/auto_ap/views/components/switch-field.cljs diff --git a/src/cljs/auto_ap/views/components/switch-field.cljs b/src/cljs/auto_ap/views/components/switch-field.cljs deleted file mode 100644 index 039742db..00000000 --- a/src/cljs/auto_ap/views/components/switch-field.cljs +++ /dev/null @@ -1,6 +0,0 @@ -(ns auto-ap.views.components.switch-field) - -(defn switch-field [{:keys [id label on-change checked]}] - [:<> - [:input.switch {:type "checkbox" :id id :on-change on-change :checked checked}] - [:label {:for id} label]])