How to use a ReactJS Component with Clojurescipt/R

2019-04-06 13:54发布

问题:

Is it possible to wrap ReactJS components for use with Reagent in Clojurescript? I have read that it is. Can someone provide me with a basic example?

Thanks

回答1:

Here is my solution for it (I am going to use a React-Bootstrap Panel Component):

1) Include react-bootstrap.min.js in your html.

2) Here is a sample usage of the Panel component:

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