Build: Fix TOC stories for cra/default-js

This commit is contained in:
Michael Shilman 2023-07-07 17:37:10 +08:00
parent add71c33c6
commit 8d873b6e64
4 changed files with 12 additions and 17 deletions

View File

@ -9,14 +9,6 @@ export default {
},
};
export const One = {
args: { label: 'One' },
};
export const Two = {
args: { label: 'Two' },
};
export const Three = {
args: { label: 'Two' },
};
export const One = { args: { label: 'One' } };
export const Two = { args: { label: 'Two' } };
export const Three = { args: { label: 'Three' } };

View File

@ -1,5 +1,4 @@
import { global as globalThis } from '@storybook/global';
import { One, Two, Three } from './basic.stories';
export default {
component: globalThis.Components.Button,
@ -11,4 +10,6 @@ export default {
},
};
export { One, Two, Three };
export const One = { args: { label: 'One' } };
export const Two = { args: { label: 'Two' } };
export const Three = { args: { label: 'Three' } };

View File

@ -1,5 +1,4 @@
import { global as globalThis } from '@storybook/global';
import { One, Two, Three } from './basic.stories';
export default {
component: globalThis.Components.Button,
@ -11,4 +10,6 @@ export default {
},
};
export { One, Two, Three };
export const One = { args: { label: 'One' } };
export const Two = { args: { label: 'Two' } };
export const Three = { args: { label: 'Three' } };

View File

@ -1,5 +1,4 @@
import { global as globalThis } from '@storybook/global';
import { One, Two, Three } from './basic.stories';
export default {
component: globalThis.Components.Button,
@ -11,4 +10,6 @@ export default {
},
};
export { One, Two, Three };
export const One = { args: { label: 'One' } };
export const Two = { args: { label: 'Two' } };
export const Three = { args: { label: 'Three' } };