mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
30 lines
544 B
JavaScript
30 lines
544 B
JavaScript
import React from 'react';
|
|
|
|
export default {
|
|
title: 'Addons/Options',
|
|
};
|
|
|
|
export const SettingName = () => (
|
|
<div>This story should have changed the name of the storybook</div>
|
|
);
|
|
|
|
SettingName.storyName = 'setting name';
|
|
|
|
SettingName.parameters = {
|
|
options: {
|
|
name: 'Custom Storybook',
|
|
},
|
|
};
|
|
|
|
export const HidingAddonPanel = () => (
|
|
<div>This story should have changed hidden the addons panel</div>
|
|
);
|
|
|
|
HidingAddonPanel.storyName = 'hiding addon panel';
|
|
|
|
HidingAddonPanel.parameters = {
|
|
options: {
|
|
showPanel: false,
|
|
},
|
|
};
|