mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
// @ts-expect-error this will be part of the package.json of the sandbox
|
|
import config from '#.storybook/preview';
|
|
|
|
const meta = config.meta({
|
|
component: (globalThis as any).Components.Button,
|
|
args: {
|
|
label: 'Hello world!',
|
|
},
|
|
});
|
|
|
|
export const Story = meta.story({});
|