om-next

2017-02-18T08:25:57.001354Z

Hi all!

2017-02-18T08:25:59.001355Z

Is there Om.Next code snippet that exemplifies how to use Semantic-UI React library at https://clojars.org/cljsjs/semantic-ui-react ?

2017-02-18T18:34:18.001360Z

@david.alfaro haven't used this, and Im not sure if this is very complete cljsjs project is there's only one extern https://github.com/cljsjs/packages/blob/master/semantic-ui-react/resources/cljsjs/semantic-ui-react/common/semantic-ui-react.ext.js Just add in the render

(js/React.createElement js/semanticUIReact
   #js {:some-semantic-ui-specific "properties"}  ...insert dom elements here...)

2017-02-18T19:20:13.001362Z

@hlolli thank you!