FIX incorrect naming of stories

This commit is contained in:
Norbert de Langen 2019-11-27 16:25:54 +01:00
parent ebcd61932e
commit 3acda4dd3c

View File

@ -92,15 +92,16 @@ export default {
export const noBackgrounds = () => (
<button>Click me</button>
);
defaultView.story = {
noBackgrounds.story = {
parameters: {
background: [],
},
};
export const disabledbackgrounds = () => (
export const disabledBackgrounds = () => (
<button>Click me</button>
);
defaultView.story = {
disabledBackgrounds.story = {
parameters: {
background: { disabled: true },
},