storybook/lib/cli/story.js
Michael Shilman d7ec32027b CLI: Fix variable collisions in storiesof-to-csf (#8106)
CLI: Fix variable collisions in storiesof-to-csf
2019-10-07 17:19:28 +08:00

11 lines
160 B
JavaScript

export default {
title: 'Story',
};
export const startCase = () => 'foo';
export const camelCase = () => 'foo';
camelCase.story = {
name: 'camelCase',
};