diff --git a/packages/react-components/react-combobox/stories/Combobox/index.stories.tsx b/packages/react-components/react-combobox/stories/Combobox/index.stories.tsx index a25b1e71eb9a85..9eb788f75fd7fa 100644 --- a/packages/react-components/react-combobox/stories/Combobox/index.stories.tsx +++ b/packages/react-components/react-combobox/stories/Combobox/index.stories.tsx @@ -1,5 +1,5 @@ import { Meta } from '@storybook/react'; -import { Combobox } from '@fluentui/react-combobox'; +import { Combobox, Listbox, Option } from '@fluentui/react-combobox'; import descriptionMd from './ComboboxDescription.md'; import bestPracticesMd from './ComboboxBestPractices.md'; @@ -21,6 +21,10 @@ export { Disabled } from './ComboboxDisabled.stories'; export default { title: 'Components/Combobox', component: Combobox, + subcomponents: { + Option, + Listbox, + }, parameters: { docs: { description: { diff --git a/packages/react-components/react-combobox/stories/Dropdown/index.stories.tsx b/packages/react-components/react-combobox/stories/Dropdown/index.stories.tsx index 546a5d51915861..cc749171b6d643 100644 --- a/packages/react-components/react-combobox/stories/Dropdown/index.stories.tsx +++ b/packages/react-components/react-combobox/stories/Dropdown/index.stories.tsx @@ -1,5 +1,5 @@ import { Meta } from '@storybook/react'; -import { Dropdown } from '@fluentui/react-combobox'; +import { Dropdown, Listbox, Option } from '@fluentui/react-combobox'; import descriptionMd from './DropdownDescription.md'; import bestPracticesMd from './DropdownBestPractices.md'; @@ -18,6 +18,10 @@ export { Disabled } from './DropdownDisabled.stories'; export default { title: 'Components/Dropdown', component: Dropdown, + subcomponents: { + Option, + Listbox, + }, parameters: { docs: { description: {