From c707a7bdfea812b776217b8a6ec5b32cf0398211 Mon Sep 17 00:00:00 2001 From: Daniel Lu Date: Thu, 23 Feb 2023 09:39:43 -0800 Subject: [PATCH] Explicitly define the exports from react-stately/tag (#4106) * Explicitly define the exports from react-stately/tag * remove extra newline --- packages/@react-stately/tag/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/@react-stately/tag/src/index.ts b/packages/@react-stately/tag/src/index.ts index a01676123b2..30273c72c2b 100644 --- a/packages/@react-stately/tag/src/index.ts +++ b/packages/@react-stately/tag/src/index.ts @@ -10,4 +10,7 @@ * governing permissions and limitations under the License. */ -export * from './useTagGroupState'; +export {useTagGroupState} from './useTagGroupState'; + +export type {TagGroupState} from './useTagGroupState'; +export type {TagGroupProps} from '@react-types/tag';