export default { title: 'Addons/Backgrounds', parameters: { backgrounds: { default: 'dark', values: [ { name: 'light', value: '#eeeeee' }, { name: 'dark', value: '#222222' }, ], }, }, }; export const Story1 = () => 'You should be able to switch backgrounds for this story'; Story1.storyName = 'story 1'; export const Story2 = () => 'This one too!'; Story2.storyName = 'story 2';