mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 01:41:05 +08:00
14 lines
364 B
JavaScript
14 lines
364 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-folder.stories.js
|
|
|
|
export default {
|
|
title: 'Addons/Docs/Mixed Leaves/Component',
|
|
parameters: { chromatic: { disable: true } },
|
|
};
|
|
|
|
export const B = () => 'b';
|
|
export const C = () => 'c';
|