One of my sub-reducers has a default state that needs to be calculated in a promise.
I could check for an empty state before creating the store, and calculate the default state, then create the store, but that's very brittle as I'd have to know a lot about state internal structure in a place where it doesn't belong.
Is there an good way to do this?