Don't use title exports in non v7 store

This commit is contained in:
Tom Coleman 2021-09-06 09:22:26 +10:00
parent 1567164519
commit 263b005669
2 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,9 @@ import React from 'react';
import { action } from '@storybook/addon-actions';
import { Button } from './Button';
console.log('HERE');
export default {
title: 'Button',
component: Button,
};

View File

@ -404,7 +404,9 @@ Read more here: https://github.com/storybookjs/storybook/blob/master/MIGRATION.m
const { id: componentId, title } = defaultExport || {};
if (!title) {
throw new Error(
`Unexpected default export without title: ${JSON.stringify(fileExports.default)}`
`Unexpected default export without title in '${fileName}': ${JSON.stringify(
fileExports.default
)}`
);
}