mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:11:07 +08:00
27 lines
551 B
JavaScript
27 lines
551 B
JavaScript
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
export default {
|
|
title: 'Addon/Backgrounds',
|
|
parameters: {
|
|
backgrounds: {
|
|
default: 'dark',
|
|
values: [
|
|
{ name: 'light', value: '#eeeeee' },
|
|
{ name: 'dark', value: '#222222' },
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Story1 = () => ({
|
|
template: hbs`<button>You should be able to switch backgrounds for this story</button>`,
|
|
});
|
|
|
|
Story1.storyName = 'story 1';
|
|
|
|
export const Story2 = () => ({
|
|
template: hbs`<button>This one too!</button>`,
|
|
});
|
|
|
|
Story2.storyName = 'story 2';
|