mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 22:21:47 +08:00
9 lines
166 B
Plaintext
9 lines
166 B
Plaintext
```ts
|
|
// CSF 3 - explicit render function
|
|
|
|
// Other imports and story implementation
|
|
export const Default: Story = {
|
|
render: (args) => <Button {...args} />,
|
|
};
|
|
```
|