Last active
February 15, 2022 05:03
-
-
Save wesleygrimes/9d9bac862467038229f958b113f6fdf7 to your computer and use it in GitHub Desktop.
Root State
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { MyFeatureStoreState } from './my-feature-store'; | |
import { MyOtherFeatureStoreState } from './my-other-feature-store'; | |
export interface State { | |
myFeature: MyFeatureStoreState.State; | |
myOtherFeature: MyOtherFeatureStoreState.State; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment