(require '[reagent.core :as r])
(defn hello [name]
  [:p (str "Hello " name "!")])

[:div
	[hello "Klipse"]
	[:p "how are you today"]
	[:img {:src "https://avatars1.githubusercontent.com/u/9254615?v=3&s=150"}]]
    
(defn concentric-circles []
  [:svg {:style {:border "1px solid"
                 :background "white"
                 :width "150px"
                 :height "150px"}}
   [:circle {:r 50, :cx 75, :cy 75, :fill "green"}]
   [:circle {:r 25, :cx 75, :cy 75, :fill "blue"}]
   [:path {:stroke-width 12
           :stroke "white"
           :fill "none"
           :d "M 30,40 C 100,40 50,110 120,110"}]
   [:line {:stroke-width 12
           :stroke "white"
           :fill "none"
           :x1 "75" :y1 "65"
           :x2 "10" :y2 "150"}]])