mirror of
https://github.com/status-im/reagent.git
synced 2025-01-13 05:14:45 +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!)
|