From da7a95e381bc74a8a9b353fb82f8c05e030d86e0 Mon Sep 17 00:00:00 2001 From: Jonathan Newman Date: Mon, 24 Feb 2020 19:53:54 -0600 Subject: [PATCH] added link to multiple stores --- docs/api/useStore.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/api/useStore.md b/docs/api/useStore.md index f90d445..390ff23 100644 --- a/docs/api/useStore.md +++ b/docs/api/useStore.md @@ -98,6 +98,10 @@ function Header() { export default observer(Header); ``` +Using a unique `identifier` is often done when your application has more than one `store`. + +See: [Using multiple stores](/using-multiple-stores). + ### Using a mapStateToProps callback With this callback you can return slices of the store with a selector function, or do additional processing before the component accesses it.