Storybook
StroryBook ์ ํ์ํ ๊น?
Storybook v5.2 ๋ถํฐ๋ Component Story Format (CSF) ํ์ ๊ถ์ฅ
storiesOf('opt-components', module)
.addDecorator(withOPTComponentsStorybookGlobalStyle)
.addDecorator(withInsightViewerStorybookGlobalStyle)
.add('<DialogPaper>', () => <DialogPaperSample />);export default {
title: 'opt-components',
component: DialogPaper,
decorators: [
withOPTComponentsStorybookGlobalStyle,
withInsightViewerStorybookGlobalStyle
],
};Last updated