Idiomatic ClojureScript interface to modern React.js
"Oh god, I just started learning reagent. Don’t tell me I’ll have to switch" /r/clojure
API compatibility: React v17
UIx v1 is in roman01la/uix repo
Discuss at #uix on Clojurians Slack
yarn add [email protected] [email protected]
{:deps {com.pitch/uix.core {:mvn/version "0.6.2"}
com.pitch/uix.dom {:mvn/version "0.6.2"}}}
(ns my.app
(:require [uix.core :refer [defui $]]
[uix.dom]))
(defui button [{:keys [on-click children]}]
($ :button.btn {:on-click on-click}
children))
(defui app []
(let [[state set-state!] (uix.core/use-state 0)]
($ :<>
($ button {:on-click #(set-state! dec)} "-")
($ :span state)
($ button {:on-click #(set-state! inc)} "+"))))
(uix.dom/render ($ app) (js/document.getElementById "root"))
- What is UIx?
- Components
- Elements
- Hooks
- State
- Effects
- Interop with React
- Interop with Reagent
- Code-splitting and React.lazy
- Migrating from Reagent
- Server-side rendering
- Hot reloading
- React DevTools
- Code linting
- Utilities
scripts/test
Note: to ensure you're using the right Node.js version, you can use nvm and run nvm use
once in the directory. Otherwise the Node.js version you use is in the .nvmrc
file. See nvm repo for more documentation.