state.cljs 246 B

123456789
  1. (ns frontend.state)
  2. ;; TODO: replace this with datascript
  3. (def state (atom
  4. {:route-match nil
  5. :notification/show? false
  6. :notification/text nil
  7. :root-component nil
  8. :pushing? false}))