mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
10 lines
230 B
JavaScript
10 lines
230 B
JavaScript
import centered from '@storybook/addon-centered/html';
|
|
|
|
export default {
|
|
title: 'Addons|Centered',
|
|
decorators: [centered],
|
|
};
|
|
|
|
export const story1 = () => '<button>I am a Button !</button>';
|
|
story1.title = 'button in center';
|