mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 00:01:17 +08:00
23 lines
502 B
JavaScript
23 lines
502 B
JavaScript
import React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
storiesOf('Addons|Options', module)
|
|
.add(
|
|
'withOptions setting name',
|
|
() => <div>This story should have changed the name of the storybook</div>,
|
|
{
|
|
options: {
|
|
name: 'Custom Storybook',
|
|
},
|
|
}
|
|
)
|
|
.add(
|
|
'withOptions hiding addon panel',
|
|
() => <div>This story should have changed hidden the addons panel</div>,
|
|
{
|
|
options: {
|
|
showAddonPanel: false,
|
|
},
|
|
}
|
|
);
|