mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-26 05:02:32 +08:00
18 lines
511 B
JavaScript
18 lines
511 B
JavaScript
import { storiesOf } from '@storybook/html';
|
|
|
|
import backgrounds from '@storybook/addon-backgrounds/html';
|
|
|
|
storiesOf('Addons|Backgrounds', module)
|
|
.addDecorator(
|
|
backgrounds([
|
|
{ name: 'twitter', value: '#00aced' },
|
|
{ name: 'facebook', value: '#3b5998', default: true },
|
|
])
|
|
)
|
|
.add(
|
|
'story 1',
|
|
() =>
|
|
'<span style="color: white">You should be able to switch backgrounds for this story</span>'
|
|
)
|
|
.add('story 2', () => '<span style="color: white">This one too!</span>');
|