mirror of
https://github.com/status-im/reagent.git
synced 2025-01-12 21:05:20 +00:00
10 lines
212 B
Clojure
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!)
|