mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
11 lines
240 B
Plaintext
11 lines
240 B
Plaintext
```ts
|
|
// CSF 2
|
|
|
|
// Other imports and story implementation
|
|
export const Default: StoryFn<typeof Button> = (args, { argTypes }) => ({
|
|
props: Object.keys(argTypes),
|
|
components: { Button },
|
|
template: `<Button v-bind="$props" />`,
|
|
});
|
|
```
|