2019-06-24 00:39:54 +08:00
|
|
|
export default {
|
2019-11-13 18:17:20 +08:00
|
|
|
title: 'Addons/Backgrounds',
|
2019-06-24 00:39:54 +08:00
|
|
|
parameters: {
|
2020-05-04 11:46:54 +02:00
|
|
|
backgrounds: {
|
|
|
|
default: 'dark',
|
|
|
|
values: [
|
|
|
|
{ name: 'light', value: '#eeeeee' },
|
|
|
|
{ name: 'dark', value: '#222222' },
|
|
|
|
],
|
|
|
|
},
|
2019-06-24 00:39:54 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2019-11-19 21:08:32 +01:00
|
|
|
export const Story1 = () =>
|
2019-06-24 00:39:54 +08:00
|
|
|
'<span style="color: white">You should be able to switch backgrounds for this story</span>';
|
2020-05-25 13:32:05 +08:00
|
|
|
Story1.storyName = 'story 1';
|
2019-06-24 00:39:54 +08:00
|
|
|
|
2019-11-19 21:08:32 +01:00
|
|
|
export const Story2 = () => '<span style="color: white">This one too!</span>';
|
2020-05-25 13:32:05 +08:00
|
|
|
Story2.storyName = 'story 2';
|