mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Don't use title exports in non v7 store
This commit is contained in:
parent
1567164519
commit
263b005669
@ -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,
|
||||
};
|
||||
|
||||
|
@ -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
|
||||
)}`
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user