https://github.com/kennethkalmer/re-frame-semantic-ui-react-github-tabs
Passing around components with reagent and Semantic UI- sample code
https://github.com/kennethkalmer/re-frame-semantic-ui-react-github-tabs
clojurescript re-frame reagent semantic-ui-react
Last synced: 3 months ago
JSON representation
Passing around components with reagent and Semantic UI- sample code
- Host: GitHub
- URL: https://github.com/kennethkalmer/re-frame-semantic-ui-react-github-tabs
- Owner: kennethkalmer
- Created: 2018-04-22T20:04:00.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-22T20:05:29.000Z (about 7 years ago)
- Last Synced: 2025-01-18T08:13:46.066Z (5 months ago)
- Topics: clojurescript, re-frame, reagent, semantic-ui-react
- Language: Clojure
- Homepage: https://opensourcery.co.za/2018/04/22/passing-around-components-with-reagent-and-semantic-ui/
- Size: 6.84 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# github-repo-widget
A [re-frame](https://github.com/Day8/re-frame) application designed to ... well, that part is up to you.
## Development Mode
### Start Cider from Emacs:
Put this in your Emacs config file:
```
(setq cider-cljs-lein-repl
"(do (require 'figwheel-sidecar.repl-api)
(figwheel-sidecar.repl-api/start-figwheel!)
(figwheel-sidecar.repl-api/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
```