mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 08:51:08 +08:00
31 lines
544 B
JavaScript
31 lines
544 B
JavaScript
/** @jsx h */
|
|
|
|
import { h } from 'preact';
|
|
|
|
import Button from '../Button';
|
|
|
|
export default {
|
|
title: 'Addons/Backgrounds',
|
|
|
|
parameters: {
|
|
backgrounds: [
|
|
{ name: 'twitter', value: '#00aced' },
|
|
{ name: 'facebook', value: '#3b5998', default: true },
|
|
],
|
|
},
|
|
};
|
|
|
|
export const example1 = () => (
|
|
<Button>You should be able to switch backgrounds for this story</Button>
|
|
);
|
|
|
|
example1.story = {
|
|
name: 'Example 1',
|
|
};
|
|
|
|
export const example2 = () => <Button>This one too!</Button>;
|
|
|
|
example2.story = {
|
|
name: 'Example 2',
|
|
};
|