0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00
penpot/frontend/uxbox/state.cljs

17 lines
368 B
Text
Raw Normal View History

2015-06-18 19:35:50 +02:00
(ns uxbox.state
(:require [uxbox.rstore :as rs]
[beicon.core :as rx]))
2015-12-13 22:57:14 +02:00
(enable-console-print!)
(defonce state (atom {}))
2015-12-14 14:17:18 +02:00
(defonce stream
2015-12-13 22:57:14 +02:00
(rs/init {:user {:fullname "Cirilla"
:avatar "http://lorempixel.com/50/50/"}
2015-12-14 20:31:21 +02:00
:workspace nil
2015-12-13 13:04:34 +02:00
:projects-by-id {}
:pages-by-id {}}))
2015-06-18 19:35:50 +02:00
2015-12-14 23:57:47 +02:00
(rx/to-atom stream state)