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: {
|
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
|
|
|
},
|
|
|
|
};
|
|
|
|
|
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>';
|
2019-11-19 21:08:32 +01:00
|
|
|
Story1.story = { name: '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>';
|
|
|
|
Story2.story = { name: 'story 2' };
|