mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
26 lines
528 B
JavaScript
26 lines
528 B
JavaScript
import React from 'react';
|
|
import centered from '@storybook/addon-centered/react';
|
|
|
|
import BaseButton from '../components/BaseButton';
|
|
|
|
export default {
|
|
title: 'Addons/Centered',
|
|
decorators: [centered],
|
|
};
|
|
|
|
export const story1 = () => <BaseButton label="This story should be centered" />;
|
|
|
|
story1.story = {
|
|
name: 'story 1',
|
|
};
|
|
|
|
export const story2 = () => <BaseButton label="This story should not be centered" />;
|
|
|
|
story2.story = {
|
|
name: 'story 2 not centered',
|
|
|
|
parameters: {
|
|
centered: { disable: true },
|
|
},
|
|
};
|