如何在Clojurescipt / Reagent中使用ReactJS组件

时间:2014-11-24 17:18:53

标签: reactjs clojurescript reagent

是否可以在Clojurescript中包装ReactJS组件以与Reagent一起使用?我有read。有人可以给我一个基本的例子吗?

由于

1 个答案:

答案 0 :(得分:7)

这是我的解决方案(我将使用React-Bootstrap Panel组件):

1)在您的HTML中加入react-bootstrap.min.js

2)以下是Panel组件的示例用法:

(def PanelComp (. js/ReactBootstrap -Panel))
(defn page
  []
  [:div
   [:div [PanelComp {:header "Panel heading without title"} "Panel content"]]])