aboutsummaryrefslogtreecommitdiff
path: root/src/genpass/components/input.cljc
diff options
context:
space:
mode:
Diffstat (limited to 'src/genpass/components/input.cljc')
-rw-r--r--src/genpass/components/input.cljc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/genpass/components/input.cljc b/src/genpass/components/input.cljc
index a5ae437..a4b8499 100644
--- a/src/genpass/components/input.cljc
+++ b/src/genpass/components/input.cljc
@@ -1,5 +1,6 @@
(ns genpass.components.input)
+
(defn input-primary
([text]
(input-primary text #()))
@@ -7,4 +8,6 @@
[:input.input.is-primary
{:type "text"
:value text
- :on-click fn}])) \ No newline at end of file
+ :on-click fn}]))
+
+