2019-06-24 00:39:54 +08:00
|
|
|
export default {
|
|
|
|
title: 'Addons|Backgrounds',
|
|
|
|
parameters: {
|
2018-12-06 23:56:57 +01:00
|
|
|
backgrounds: [
|
|
|
|
{ name: 'light', value: '#eeeeee' },
|
|
|
|
{ name: 'dark', value: '#222222', default: true },
|
|
|
|
],
|
2019-06-24 00:39:54 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const story1 = () =>
|
|
|
|
'<span style="color: white">You should be able to switch backgrounds for this story</span>';
|
2019-06-27 18:10:45 +08:00
|
|
|
story1.story = { name: 'story 1' };
|
2019-06-24 00:39:54 +08:00
|
|
|
|
|
|
|
export const story2 = () => '<span style="color: white">This one too!</span>';
|
2019-06-27 18:10:45 +08:00
|
|
|
story2.story = { name: 'story 2' };
|