WIP: project creation now work.

This commit is contained in:
Andrey Antukh 2015-12-14 14:17:18 +02:00
parent 62b9267d4f
commit 56f7613453
11 changed files with 201 additions and 103 deletions

View file

@ -6,10 +6,15 @@
(defonce state (atom {}))
(def stream
(defonce stream
(rs/init {:user {:fullname "Cirilla"
:avatar "http://lorempixel.com/50/50/"}
:projects []
:pages []
:projects-by-id {}
:pages-by-id {}}))
(rx/to-atom stream state)
(defonce +setup-stuff+
(do
(rx/to-atom stream state)))