Skip to content

Instantly share code, notes, and snippets.

@dimovich
Created May 18, 2017 15:13
Show Gist options
  • Save dimovich/4e0609225bf05f022569630389d289c3 to your computer and use it in GitHub Desktop.
Save dimovich/4e0609225bf05f022569630389d289c3 to your computer and use it in GitHub Desktop.
(ns some-app.core
(:require [reagent.core :as r]
[cljsjs.react-input-autosize]))
(def autosize-input (r/adapt-react-class "AutosizeInput"))
(defn editor [state]
[:div.editor
[autosize-input {:value "Hello"
:name "some-name"
:on-change (fn [e] )}]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment