Addon-docs: Don't show stories heading when there are no stories

This commit is contained in:
Michael Shilman 2019-12-31 02:22:12 +08:00
parent 3d804cd2cc
commit 0efb742947

View File

@ -17,7 +17,7 @@ export const Stories: FunctionComponent<StoriesProps> = ({ slot, title }) => {
const stories: DocsStoryProps[] = slot
? slot(componentStories, context)
: componentStories && componentStories.slice(1);
if (!stories) {
if (!stories || stories.length === 0) {
return null;
}
return (