docs/api/doc-blocks/doc-block-stories.mdx
The Stories block renders the full collection of stories in a stories file.
import { Meta, Stories } from '@storybook/addon-docs/blocks';
import * as ButtonStories from './Button.stories';
<Meta of={ButtonStories} />
<Stories />
import { Stories } from '@storybook/addon-docs/blocks';
Stories is configured with the following props:
includePrimaryType: boolean
Default: true
Determines if the collection of stories includes the primary (first) story.
<Callout variant="info" icon="💡">If a stories file contains only one story and includePrimary={true}, the Stories block will render nothing to avoid a potentially confusing situation.
titleType: string
Default: 'Stories'
Sets the heading content preceding the collection of stories.