Fork me on GitHub
#re-frame
<
2020-03-09
>
mruzekw21:03:25

Is there a go to data store for re-frame apps? Or is it all just CLJS data structure? I know there’s Datascript?

shaun-mahood21:03:11

Generally it's a ClojureScript map within an atom (see https://github.com/day8/re-frame/blob/master/docs/ApplicationState.md) - if you wanted to use DataScript, you could also look at https://github.com/denistakeda/re-posh

mruzekw21:03:09

Okay, thanks