From 118c76b47c3faa5b7c66503afd7121ca43d77e56 Mon Sep 17 00:00:00 2001 From: Kaartic Sivaraam Date: Wed, 18 Nov 2020 21:12:50 +0530 Subject: [PATCH] docs(v2): doc typo (#3776) --- website/docs/markdown-features.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/markdown-features.mdx b/website/docs/markdown-features.mdx index 162869b297..b00842f603 100644 --- a/website/docs/markdown-features.mdx +++ b/website/docs/markdown-features.mdx @@ -304,7 +304,7 @@ By default, tabs are rendered eagerly, but it is possible to load them lazily by ### Syncing tab choices -You may want choices of the same kind of tabs to sync with each other. For example, you might want to provide different instructions for users on Windows vs users on macOS, and you want to changing all OS-specific instructions tabs in one click. To achieve that, you can give all related tabs the same `groupId` prop. Note that doing this will persist the choice in `localStorage` and all `` instances with the same `groupId` will update automatically when the value of one of them is changed. Not that `groupID` are globally-namespaced. +You may want choices of the same kind of tabs to sync with each other. For example, you might want to provide different instructions for users on Windows vs users on macOS, and you want to changing all OS-specific instructions tabs in one click. To achieve that, you can give all related tabs the same `groupId` prop. Note that doing this will persist the choice in `localStorage` and all `` instances with the same `groupId` will update automatically when the value of one of them is changed. Note that `groupID` are globally-namespaced. ```jsx {2,14}