入力要素に初期フォーカスを設定しようとしています
(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"}]]))
これは私にはうまくいきません。私は何を間違っていますか?