mirror of https://github.com/status-im/reagent.git
10 lines
212 B
Plaintext
10 lines
212 B
Plaintext
|
(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!)
|