mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
13 lines
329 B
JavaScript
13 lines
329 B
JavaScript
// This example exists solely to demonstrate nav hierarchy
|
|
// in --docs mode when a folder contains both a component and
|
|
// individual stories
|
|
//
|
|
// See also ./mixed-leaves-component.stories.js
|
|
|
|
export default {
|
|
title: 'Addons/Docs/Mixed Leaves',
|
|
parameters: { chromatic: { disable: true } },
|
|
};
|
|
|
|
export const A = () => 'a';
|