https://github.com/kennethkalmer/re-frame-semantic-ui-react-github-widget
Using semantic-ui-react with re-frame - sample project
https://github.com/kennethkalmer/re-frame-semantic-ui-react-github-widget
clojurescript re-frame reagent semantic-ui-react
Last synced: 1 day ago
JSON representation
Using semantic-ui-react with re-frame - sample project
- Host: GitHub
- URL: https://github.com/kennethkalmer/re-frame-semantic-ui-react-github-widget
- Owner: kennethkalmer
- Created: 2017-02-12T21:22:31.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-14T17:24:53.000Z (about 7 years ago)
- Last Synced: 2025-04-30T15:48:53.340Z (1 day ago)
- Topics: clojurescript, re-frame, reagent, semantic-ui-react
- Language: Clojure
- Homepage: https://opensourcery.co.za/2017/02/12/using-semantic-ui-react-with-re-frame/
- Size: 9.77 KB
- Stars: 21
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# re-frame-semantic-ui-react-github-widget
A [re-frame](https://github.com/Day8/re-frame) application designed to show how to use [semantic-ui-react](http://react.semantic-ui.com/) from [cljsjs](http://cljsjs.github.io).
The interesting parts are in `src/cljs/views.cljs`.
## Development Mode
### Start Cider from Emacs:
Put this in your Emacs config file:
```
(setq cider-cljs-lein-repl "(do (use 'figwheel-sidecar.repl-api) (start-figwheel!) (cljs-repl))")
```Navigate to a clojurescript file and start a figwheel REPL with `cider-jack-in-clojurescript` or (`C-c M-J`)
### Run application:
```
lein clean
lein figwheel dev
```Figwheel will automatically push cljs changes to the browser.
Wait a bit, then browse to [http://localhost:3449](http://localhost:3449).
## Production Build
To compile clojurescript to javascript:
```
lein clean
lein cljsbuild once min
```