reagent/demo/reagentdemo/dev.cljs

10 lines
212 B
Clojure

(ns reagentdemo.dev
"Initializes the demo app, and runs the tests."
(:require [reagentdemo.core :as core]
[reagenttest.runtests :as tests]))
(defn init! []
(core/init! (tests/init!)))
(init!)