2025-01-31 14:25:39 +01:00

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({});