mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:31:07 +08:00
29 lines
537 B
JavaScript
29 lines
537 B
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
export default {
|
|
title: 'Addon|Backgrounds',
|
|
|
|
parameters: {
|
|
backgrounds: [
|
|
{ name: 'light', value: '#eeeeee' },
|
|
{ name: 'dark', value: '#222222', default: true },
|
|
],
|
|
},
|
|
};
|
|
|
|
export const story1 = () => ({
|
|
template: hbs`<button>You should be able to switch backgrounds for this story</button>`,
|
|
});
|
|
|
|
story1.story = {
|
|
name: 'story 1',
|
|
};
|
|
|
|
export const story2 = () => ({
|
|
template: hbs`<button>This one too!</button>`,
|
|
});
|
|
|
|
story2.story = {
|
|
name: 'story 2',
|
|
};
|