1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-07 02:33:39 +02:00

Initial commit; shadow-cljs, re-frame + re-frame-10x

This commit is contained in:
Arne Schlüter 2018-04-17 23:42:24 +02:00
commit 4fc35c34b0
11 changed files with 1813 additions and 0 deletions

View file

@ -0,0 +1,8 @@
(ns airsonic-ui.events
(:require [re-frame.core :as re-frame]
[airsonic-ui.db :as db]))
(re-frame/reg-event-db
::initialize-db
(fn [_]
db/default-db))