mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-21 05:02:39 +08:00
11 lines
160 B
JavaScript
11 lines
160 B
JavaScript
|
export default {
|
||
|
title: 'Story',
|
||
|
};
|
||
|
|
||
|
export const startCase = () => 'foo';
|
||
|
export const camelCase = () => 'foo';
|
||
|
|
||
|
camelCase.story = {
|
||
|
name: 'camelCase',
|
||
|
};
|