Skip to content

Instantly share code, notes, and snippets.

View arootroatch's full-sized avatar

Alex Root-Roatch arootroatch

View GitHub Profile
@arootroatch
arootroatch / react-refs-use-effect.cljs
Created May 23, 2025 18:09
ClojureScript React Refs and useEffect
(ns scratch-7
(:require [reagent.core :as reagent]
[reagent.dom :as dom]
[react :as react]))
(defn noop
"Does nothing, returns nil"
[])
(defn highlight-code [node] "Highlight code snippets")