答案 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"]]])