import React from 'react';
import { storiesOf } from '@storybook/react';
storiesOf('Addons|Options', module)
.add(
'withOptions setting name',
() =>
This story should have changed the name of the storybook
,
{
options: {
name: 'Custom Storybook',
},
}
)
.add(
'withOptions hiding addon panel',
() => This story should have changed hidden the addons panel
,
{
options: {
showAddonPanel: false,
},
}
);