I'm trying to set the initial focus on an input element
(defn initial-focus-wrapper [element]
(with-meta element
{:component-did-mount #(.focus (reagent/dom-node %))}))
(defn chat-input []
(fn []
[initial-focus-wrapper
[:input {:type "text"}]]))
This doesn't work for me though. What am I doing wrong?
autoFocus
prop with the valuetrue
, that should work. – Handmedown